Uses of Class
net.bytebuddy.implementation.MethodDelegation

Packages that use MethodDelegation
Package
Description
The implementation package contains any logic for intercepting method calls.
  • Uses of MethodDelegation in net.bytebuddy.implementation

    Modifier and Type
    Method
    Description
    MethodDelegation.to(Class<?> type)
    Delegates any intercepted method to invoke a static method that is declared by the supplied type.
    MethodDelegation.to(Object target)
    Delegates any intercepted method to invoke a non-static method that is declared by the supplied type's instance or any of its super types.
    MethodDelegation.to(Object target, Type type)
    Delegates any intercepted method to invoke a non-static method that is declared by the supplied type's instance or any of its super types.
    MethodDelegation.to(Object target, Type type, String fieldName)
    Delegates any intercepted method to invoke a non-static method that is declared by the supplied type's instance or any of its super types.
    MethodDelegation.to(Object target, Type type, String fieldName, MethodGraph.Compiler methodGraphCompiler)
    Delegates any intercepted method to invoke a non-static method that is declared by the supplied type's instance or any of its super types.
    MethodDelegation.to(Object target, Type type, MethodGraph.Compiler methodGraphCompiler)
    Delegates any intercepted method to invoke a non-static method that is declared by the supplied type's instance or any of its super types.
    MethodDelegation.to(Object target, String fieldName)
    Delegates any intercepted method to invoke a non-static method that is declared by the supplied type's instance or any of its super types.
    MethodDelegation.to(Object target, String fieldName, MethodGraph.Compiler methodGraphCompiler)
    Delegates any intercepted method to invoke a non-static method that is declared by the supplied type's instance or any of its super types.
    MethodDelegation.to(Object target, TypeDefinition typeDefinition)
    Delegates any intercepted method to invoke a non-static method that is declared by the supplied type's instance or any of its super types.
    MethodDelegation.to(Object target, TypeDefinition typeDefinition, String fieldName)
    Delegates any intercepted method to invoke a non-static method that is declared by the supplied type's instance or any of its super types.
    MethodDelegation.to(Object target, TypeDefinition typeDefinition, String fieldName, MethodGraph.Compiler methodGraphCompiler)
    Delegates any intercepted method to invoke a non-static method that is declared by the supplied type's instance or any of its super types.
    MethodDelegation.to(Object target, TypeDefinition typeDefinition, MethodGraph.Compiler methodGraphCompiler)
    Delegates any intercepted method to invoke a non-static method that is declared by the supplied type's instance or any of its super types.
    MethodDelegation.to(Object target, MethodGraph.Compiler methodGraphCompiler)
    Delegates any intercepted method to invoke a non-static method that is declared by the supplied type's instance or any of its super types.
    MethodDelegation.to(TypeDescription typeDescription)
    Delegates any intercepted method to invoke a static method that is declared by the supplied type.
    MethodDelegation.WithCustomProperties.to(Class<?> type)
    Delegates any intercepted method to invoke a static method that is declared by the supplied type.
    MethodDelegation.WithCustomProperties.to(Object target)
    Delegates any intercepted method to invoke a non-static method that is declared by the supplied type's instance or any of its super types.
    MethodDelegation.WithCustomProperties.to(Object target, Type type)
    Delegates any intercepted method to invoke a non-static method that is declared by the supplied type's instance or any of its super types.
    MethodDelegation.WithCustomProperties.to(Object target, Type type, String fieldName)
    Delegates any intercepted method to invoke a non-static method that is declared by the supplied type's instance or any of its super types.
    MethodDelegation.WithCustomProperties.to(Object target, Type type, String fieldName, MethodGraph.Compiler methodGraphCompiler)
    Delegates any intercepted method to invoke a non-static method that is declared by the supplied type's instance or any of its super types.
    MethodDelegation.WithCustomProperties.to(Object target, Type type, MethodGraph.Compiler methodGraphCompiler)
    Delegates any intercepted method to invoke a non-static method that is declared by the supplied type's instance or any of its super types.
    MethodDelegation.WithCustomProperties.to(Object target, String fieldName)
    Delegates any intercepted method to invoke a non-static method that is declared by the supplied type's instance or any of its super types.
    MethodDelegation.WithCustomProperties.to(Object target, String fieldName, MethodGraph.Compiler methodGraphCompiler)
    Delegates any intercepted method to invoke a non-static method that is declared by the supplied type's instance or any of its super types.
    MethodDelegation.WithCustomProperties.to(Object target, TypeDefinition typeDefinition)
    Delegates any intercepted method to invoke a non-static method that is declared by the supplied type's instance or any of its super types.
    MethodDelegation.WithCustomProperties.to(Object target, TypeDefinition typeDefinition, String fieldName)
    Delegates any intercepted method to invoke a non-static method that is declared by the supplied type's instance or any of its super types.
    MethodDelegation.WithCustomProperties.to(Object target, TypeDefinition typeDefinition, String fieldName, MethodGraph.Compiler methodGraphCompiler)
    Delegates any intercepted method to invoke a non-static method that is declared by the supplied type's instance or any of its super types.
    MethodDelegation.WithCustomProperties.to(Object target, TypeDefinition typeDefinition, MethodGraph.Compiler methodGraphCompiler)
    Delegates any intercepted method to invoke a non-static method that is declared by the supplied type's instance or any of its super types.
    MethodDelegation.WithCustomProperties.to(Object target, MethodGraph.Compiler methodGraphCompiler)
    Delegates any intercepted method to invoke a non-static method that is declared by the supplied type's instance or any of its super types.
    MethodDelegation.WithCustomProperties.to(TypeDescription typeDescription)
    Delegates any intercepted method to invoke a static method that is declared by the supplied type.
    MethodDelegation.toConstructor(Class<?> type)
    Delegates any intercepted method to invoke a constructor of the supplied type.
    MethodDelegation.toConstructor(TypeDescription typeDescription)
    Delegates any intercepted method to invoke a constructor of the supplied type.
    MethodDelegation.WithCustomProperties.toConstructor(Class<?> type)
    Delegates any intercepted method to invoke a constructor of the supplied type.
    MethodDelegation.WithCustomProperties.toConstructor(TypeDescription typeDescription)
    Delegates any intercepted method to invoke a constructor of the supplied type.
    MethodDelegation.toField(String name)
    Delegates any intercepted method to invoke a non-static method on the instance of the supplied field.
    MethodDelegation.toField(String name, FieldLocator.Factory fieldLocatorFactory)
    Delegates any intercepted method to invoke a non-static method on the instance of the supplied field.
    MethodDelegation.toField(String name, FieldLocator.Factory fieldLocatorFactory, MethodGraph.Compiler methodGraphCompiler)
    Delegates any intercepted method to invoke a non-static method on the instance of the supplied field.
    MethodDelegation.toField(String name, MethodGraph.Compiler methodGraphCompiler)
    Delegates any intercepted method to invoke a non-static method on the instance of the supplied field.
    MethodDelegation.WithCustomProperties.toField(String name)
    Delegates any intercepted method to invoke a non-static method on the instance of the supplied field.
    MethodDelegation.WithCustomProperties.toField(String name, FieldLocator.Factory fieldLocatorFactory)
    Delegates any intercepted method to invoke a non-static method on the instance of the supplied field.
    MethodDelegation.WithCustomProperties.toField(String name, FieldLocator.Factory fieldLocatorFactory, MethodGraph.Compiler methodGraphCompiler)
    Delegates any intercepted method to invoke a non-static method on the instance of the supplied field.
    MethodDelegation.WithCustomProperties.toField(String name, MethodGraph.Compiler methodGraphCompiler)
    Delegates any intercepted method to invoke a non-static method on the instance of the supplied field.
    MethodDelegation.toMethodReturnOf(String name)
    Delegates any intercepted method to invoke a method on an instance that is returned by a parameterless method of the given name.
    MethodDelegation.toMethodReturnOf(String name, MethodGraph.Compiler methodGraphCompiler)
    Delegates any intercepted method to invoke a method on an instance that is returned by a parameterless method of the given name.
    MethodDelegation.WithCustomProperties.toMethodReturnOf(String name)
    Delegates any intercepted method to invoke a method on an instance that is returned by a parameterless method of the given name.
    MethodDelegation.WithCustomProperties.toMethodReturnOf(String name, MethodGraph.Compiler methodGraphCompiler)
    Delegates any intercepted method to invoke a method on an instance that is returned by a parameterless method of the given name.