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 classAn implementation of anInvocationHandlerAdapterthat delegates method invocations to an adapter that is stored in an instance field.protected static classAn implementation of anInvocationHandlerAdapterthat delegates method invocations to an adapter that is stored in a static field.Methods in net.bytebuddy.implementation that return InvocationHandlerAdapterModifier and TypeMethodDescriptionstatic InvocationHandlerAdapterInvocationHandlerAdapter.of(InvocationHandler invocationHandler) Creates an implementation for any instance of anInvocationHandlerthat delegates all method interceptions to the given instance which will be stored in astaticfield.static InvocationHandlerAdapterInvocationHandlerAdapter.of(InvocationHandler invocationHandler, String fieldName) Creates an implementation for any instance of anInvocationHandlerthat delegates all method interceptions to the given instance which will be stored in astaticfield.static InvocationHandlerAdapterCreates an implementation for anyInvocationHandlerthat delegates all method interceptions to a field with the given name.static InvocationHandlerAdapterInvocationHandlerAdapter.toField(String name, FieldLocator.Factory fieldLocatorFactory) Creates an implementation for anyInvocationHandlerthat delegates all method interceptions to a field with the given name.