Package net.bytebuddy.implementation
Interface InvocationHandlerAdapter.AssignerConfigurable
-
- All Superinterfaces:
Implementation
,InstrumentedType.Prepareable
- All Known Subinterfaces:
InvocationHandlerAdapter.WithoutPrivilegeConfiguration
- All Known Implementing Classes:
InvocationHandlerAdapter.ForField
,InvocationHandlerAdapter.ForInstance
- Enclosing class:
- InvocationHandlerAdapter
public static interface InvocationHandlerAdapter.AssignerConfigurable extends Implementation
Allows for the configuration of anAssigner
of anInvocationHandlerAdapter
.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface net.bytebuddy.implementation.Implementation
Implementation.Composable, Implementation.Compound, Implementation.Context, Implementation.Simple, Implementation.SpecialMethodInvocation, Implementation.Target
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Implementation
withAssigner(Assigner assigner)
Configures an assigner to use with this invocation handler adapter.-
Methods inherited from interface net.bytebuddy.implementation.Implementation
appender
-
Methods inherited from interface net.bytebuddy.dynamic.scaffold.InstrumentedType.Prepareable
prepare
-
-
-
-
Method Detail
-
withAssigner
Implementation withAssigner(Assigner assigner)
Configures an assigner to use with this invocation handler adapter.- Parameters:
assigner
- The assigner to apply when defining this implementation.- Returns:
- This instrumentation with the given
assigner
configured.
-
-