Uses of Package
net.bytebuddy.implementation.bind.annotation
Packages that use net.bytebuddy.implementation.bind.annotation
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.
-
Classes in net.bytebuddy.implementation.bind.annotation used by net.bytebuddy.implementationClassDescriptionA parameter binder is used as a delegate for binding a parameter according to a particular annotation type found on this parameter.
-
Classes in net.bytebuddy.implementation.bind.annotation used by net.bytebuddy.implementation.bind.annotationClassDescriptionParameters that are annotated with this annotation will be assigned an array of all arguments of the instrumented method.A directive for how an
AllArguments
annotation on an array is to be interpreted.A binder for handling theAllArguments
annotation.Parameters that are annotated with this annotation will be assigned the value of the parameter of the source method with the given parameter.A binder for handling theArgument
annotation.Determines if a parameter binding should be considered for resolving ambiguous method bindings.Defines a binding priority for a target method.An ambiguity resolver that considers the priority of a method as defined by theBindingPriority
annotation.Parameters that are annotated with this annotation are assigned an instance of an auxiliary proxy type that allows calling any default method of an interface of the instrumented type where the parameter type must be an interface that is directly implemented by the instrumented type.A binder for theDefault
annotation.Locates the type which should be the base type of the created proxy.A type locator that yields the target parameter's type.A parameter with this annotation is assigned a proxy for invoking a default method that fits the intercepted method.A binder for handling theDefaultCall
annotation.A default method locator is responsible for looking up a default method to a given source method.An implicit default method locator that only permits the invocation of a default method if the source method itself represents a method that was defined on a default method interface.A parameter with this annotation is assigned a method handle for invoking a default method that fits the intercepted method.A binder for handling theDefaultCallHandle
annotation.A default method locator is responsible for looking up a default method to a given source method.An implicit default method locator that only permits the invocation of a default method if the source method itself represents a method that was defined on a default method interface.A parameter with this annotation is assigned an instance ofMethod
which invokes a default method implementation of this method.A binder for theDefaultMethod
annotation.A method locator is responsible for creating the super method call.A method locator for an implicit target type.A parameter with this annotation is assigned an instance ofjava.lang.invoke.MethodHandle
which invokes a default method implementation of this method.A binder for theDefaultMethodHandle
annotation.A method locator is responsible for creating the super method call.A method locator for an implicit target type.Binds the parameter type's default value to the annotated parameter, i.e.A binder for theEmpty
annotation.Assigns ajava.lang.invoke.MethodHandle
to the annotated parameter which represents a getter of the represented field.Binds aFieldGetterHandle
annotation.Using this annotation it is possible to access fields by getter and setter types.A resolver for creating an instrumentation for a field access.A factory for creating a field resolver.An unresolved field resolver.Represents an implementation for implementing a proxy type constructor when a static field is accessed.Assigns ajava.lang.invoke.MethodHandle
to the annotated parameter which represents a getter of the represented field.Binds aFieldSetterHandle
annotation.Assigns the value of a field of the instrumented type to the annotated parameter.Binds aFieldValue
annotation.This annotation instructs Byte Buddy to inject a proxy class that calls a method's super method with explicit arguments.A default method locator is responsible for looking up a default method to a given source method.An implicit default method locator that only permits the invocation of a default method if the source method itself represents a method that was defined on a default method interface.Creates an instance of the proxy when instrumenting a static method.The origin annotation provides some meta information about the source method that is bound to this method where the binding is dependant of the parameter's type:A binder for binding parameters that are annotated withOrigin
.A target method parameter that is annotated with this annotation allows to forward an intercepted method invocation to another instance.The implementation to implement aPipe.Binder.RedirectionProxy
's constructor.A stub value represents the (boxed) default value of the intercepted method's return type.Binds theStubValue
annotation.Parameters that are annotated with this annotation are assigned an instance of an auxiliary proxy type that allows calling anysuper
methods of the instrumented type where the parameter type must be a super type of the instrumented type.A binder for handling theSuper
annotation.Locates the type which should be the base type of the created proxy.A type locator that yields the instrumented type.A type locator that yields the target parameter's type.Determines the instantiation of the proxy type.Parameters that are annotated with this annotation will be assigned a proxy for calling the instrumented method'ssuper
implementation.A binder for handling theSuperCall
annotation.Parameters that are annotated with this annotation will be assigned ajava.lang.invoke.MethodHandle
invoking thesuper
implementation.A binder for handling theSuperCallHandle
annotation.A parameter with this annotation is assigned an instance ofMethod
which invokes the super implementation of this method.A binder for theSuperMethod
annotation.A parameter with this annotation is assigned an instance ofjava.lang.invoke.MethodHandle
which invokes the super implementation of this method.A binder for theSuperMethodHandle
annotation.A delegation processor is a helper class for aTargetMethodAnnotationDrivenBinder
for performing its actual logic.A handler is responsible for processing a parameter's binding.A parameter binder is used as a delegate for binding a parameter according to a particular annotation type found on this parameter.A parameter binder that binds a field's value.Implements a parameter binder that binds a fixed value to a parameter with a given annotation.Parameters that are annotated with this annotation will be assigned a reference to the instrumented object, if the instrumented method is not static.A binder for handling theThis
annotation.