Uses of Interface
net.bytebuddy.implementation.bind.MethodDelegationBinder
-
Packages that use MethodDelegationBinder Package Description net.bytebuddy.implementation The implementation package contains any logic for intercepting method calls.net.bytebuddy.implementation.bind.annotation This package contains annotations, types and classes that are responsible for binding a method to calling another method by interpreting annotations that indicate how a method should be bound to another method. -
-
Uses of MethodDelegationBinder in net.bytebuddy.implementation
Methods in net.bytebuddy.implementation with parameters of type MethodDelegationBinder Modifier and Type Method Description protected static MethodDelegation.ImplementationDelegate
MethodDelegation.ImplementationDelegate.ForConstruction. of(TypeDescription typeDescription, MethodList<?> methods, MethodDelegationBinder methodDelegationBinder)
Creates an implementation delegate for constructing a new instance.protected static MethodDelegation.ImplementationDelegate
MethodDelegation.ImplementationDelegate.ForStaticMethod. of(MethodList<?> methods, MethodDelegationBinder methodDelegationBinder)
Precompiles a static method delegation for a given list of methods. -
Uses of MethodDelegationBinder in net.bytebuddy.implementation.bind.annotation
Classes in net.bytebuddy.implementation.bind.annotation that implement MethodDelegationBinder Modifier and Type Class Description class
TargetMethodAnnotationDrivenBinder
ThisMethodDelegationBinder
binds method by analyzing annotations found on the target method that is subject to a method binding.Methods in net.bytebuddy.implementation.bind.annotation that return MethodDelegationBinder Modifier and Type Method Description static MethodDelegationBinder
TargetMethodAnnotationDrivenBinder. of(java.util.List<? extends TargetMethodAnnotationDrivenBinder.ParameterBinder<?>> parameterBinders)
Creates a new method delegation binder that binds method based on annotations found on the target method.
-