Uses of Interface
net.bytebuddy.implementation.MethodDelegation.ImplementationDelegate
-
Packages that use MethodDelegation.ImplementationDelegate Package Description net.bytebuddy.implementation The implementation package contains any logic for intercepting method calls. -
-
Uses of MethodDelegation.ImplementationDelegate in net.bytebuddy.implementation
Classes in net.bytebuddy.implementation that implement MethodDelegation.ImplementationDelegate Modifier and Type Class Description static classMethodDelegation.ImplementationDelegate.ForConstructionAn implementation delegate for constructing an instance.static classMethodDelegation.ImplementationDelegate.ForFieldAn implementation delegate for invoking methods on a field that is declared by the instrumented type or a super type.protected static classMethodDelegation.ImplementationDelegate.ForField.WithInstanceAn implementation target for a static field that is declared by the instrumented type and that is assigned an instance.protected static classMethodDelegation.ImplementationDelegate.ForField.WithLookupAn implementation target for a field that is declared by the instrumented type or a super type.static classMethodDelegation.ImplementationDelegate.ForMethodReturnAn implementation delegate for invoking a delegation target on the another methods return value.static classMethodDelegation.ImplementationDelegate.ForStaticMethodAn implementation delegate for a static method delegation.Fields in net.bytebuddy.implementation declared as MethodDelegation.ImplementationDelegate Modifier and Type Field Description private MethodDelegation.ImplementationDelegateMethodDelegation. implementationDelegateThe implementation delegate for this method delegation.Methods in net.bytebuddy.implementation that return MethodDelegation.ImplementationDelegate Modifier and Type Method Description protected static MethodDelegation.ImplementationDelegateMethodDelegation.ImplementationDelegate.ForConstruction. of(TypeDescription typeDescription, MethodList<?> methods, MethodDelegationBinder methodDelegationBinder)Creates an implementation delegate for constructing a new instance.protected static MethodDelegation.ImplementationDelegateMethodDelegation.ImplementationDelegate.ForStaticMethod. of(MethodList<?> methods, MethodDelegationBinder methodDelegationBinder)Precompiles a static method delegation for a given list of methods.Constructors in net.bytebuddy.implementation with parameters of type MethodDelegation.ImplementationDelegate Constructor Description MethodDelegation(MethodDelegation.ImplementationDelegate implementationDelegate, java.util.List<TargetMethodAnnotationDrivenBinder.ParameterBinder<?>> parameterBinders, MethodDelegationBinder.AmbiguityResolver ambiguityResolver, MethodDelegationBinder.BindingResolver bindingResolver)Creates a new method delegation.MethodDelegation(MethodDelegation.ImplementationDelegate implementationDelegate, java.util.List<TargetMethodAnnotationDrivenBinder.ParameterBinder<?>> parameterBinders, MethodDelegationBinder.AmbiguityResolver ambiguityResolver, MethodDelegationBinder.TerminationHandler terminationHandler, MethodDelegationBinder.BindingResolver bindingResolver, Assigner assigner)Creates a new method delegation.
-