Uses of Class
net.bytebuddy.implementation.InvocationHandlerAdapter
-
Packages that use InvocationHandlerAdapter Package Description net.bytebuddy.implementation The implementation package contains any logic for intercepting method calls. -
-
Uses of InvocationHandlerAdapter in net.bytebuddy.implementation
Subclasses of InvocationHandlerAdapter in net.bytebuddy.implementation Modifier and Type Class Description protected static classInvocationHandlerAdapter.ForFieldAn implementation of anInvocationHandlerAdapterthat delegates method invocations to an adapter that is stored in an instance field.protected static classInvocationHandlerAdapter.ForInstanceAn implementation of anInvocationHandlerAdapterthat delegates method invocations to an adapter that is stored in a static field.Methods in net.bytebuddy.implementation that return InvocationHandlerAdapter Modifier and Type Method Description static 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 InvocationHandlerAdapterInvocationHandlerAdapter. toField(String name)Creates 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.
-