Uses of Interface
net.bytebuddy.implementation.bind.MethodDelegationBinder
Packages that use MethodDelegationBinder
Package
Description
The implementation package contains any logic for intercepting method calls.
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 MethodDelegationBinderModifier and TypeMethodDescriptionprotected 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 MethodDelegationBinderModifier and TypeClassDescriptionclass
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 MethodDelegationBinderModifier and TypeMethodDescriptionstatic MethodDelegationBinder
TargetMethodAnnotationDrivenBinder.of
(List<? extends TargetMethodAnnotationDrivenBinder.ParameterBinder<?>> parameterBinders) Creates a new method delegation binder that binds method based on annotations found on the target method.