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 class
InvocationHandlerAdapter.ForField
An implementation of anInvocationHandlerAdapter
that delegates method invocations to an adapter that is stored in an instance field.protected static class
InvocationHandlerAdapter.ForInstance
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 InvocationHandlerAdapter Modifier and Type Method Description static 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
InvocationHandlerAdapter. toField(String name)
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.
-