static InvocationHandlerAdapter |
InvocationHandlerAdapter.of(java.lang.reflect.InvocationHandler invocationHandler) |
Creates an implementation for any instance of an InvocationHandler that delegates
all method interceptions to the given instance which will be stored in a static field.
|
static InvocationHandlerAdapter |
InvocationHandlerAdapter.of(java.lang.reflect.InvocationHandler invocationHandler,
java.lang.String fieldName) |
Creates an implementation for any instance of an InvocationHandler that delegates
all method interceptions to the given instance which will be stored in a static field.
|
static InvocationHandlerAdapter |
InvocationHandlerAdapter.toField(java.lang.String name) |
Creates an implementation for any InvocationHandler that delegates
all method interceptions to a field with the given name.
|
static InvocationHandlerAdapter |
InvocationHandlerAdapter.toField(java.lang.String name,
FieldLocator.Factory fieldLocatorFactory) |
Creates an implementation for any InvocationHandler that delegates
all method interceptions to a field with the given name.
|