Uses of Class
net.bytebuddy.implementation.InvocationHandlerAdapter
Packages that use InvocationHandlerAdapter
Package
Description
The implementation package contains any logic for intercepting method calls.
-
Uses of InvocationHandlerAdapter in net.bytebuddy.implementation
Subclasses of InvocationHandlerAdapter in net.bytebuddy.implementationModifier and TypeClassDescriptionprotected static class
An implementation of anInvocationHandlerAdapter
that delegates method invocations to an adapter that is stored in an instance field.protected static class
An implementation of anInvocationHandlerAdapter
that delegates method invocations to an adapter that is stored in a static field.Methods in net.bytebuddy.implementation that return InvocationHandlerAdapterModifier and TypeMethodDescriptionstatic InvocationHandlerAdapter
InvocationHandlerAdapter.of
(InvocationHandler invocationHandler) Creates an implementation for any instance of anInvocationHandler
that delegates all method interceptions to the given instance which will be stored in astatic
field.static InvocationHandlerAdapter
InvocationHandlerAdapter.of
(InvocationHandler invocationHandler, String fieldName) Creates an implementation for any instance of anInvocationHandler
that delegates all method interceptions to the given instance which will be stored in astatic
field.static InvocationHandlerAdapter
Creates an implementation for anyInvocationHandler
that delegates all method interceptions to a field with the given name.static InvocationHandlerAdapter
InvocationHandlerAdapter.toField
(String name, FieldLocator.Factory fieldLocatorFactory) Creates an implementation for anyInvocationHandler
that delegates all method interceptions to a field with the given name.