Package net.bytebuddy.implementation
Interface InvocationHandlerAdapter.AssignerConfigurable
- All Superinterfaces:
Implementation
,Implementation.Composable
,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.Composable
Allows for the configuration of an
Assigner
of an InvocationHandlerAdapter
.-
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
Nested classes/interfaces inherited from interface net.bytebuddy.dynamic.scaffold.InstrumentedType.Prepareable
InstrumentedType.Prepareable.NoOp
-
Method Summary
Modifier and TypeMethodDescriptionwithAssigner
(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.implementation.Implementation.Composable
andThen, andThen
Methods inherited from interface net.bytebuddy.dynamic.scaffold.InstrumentedType.Prepareable
prepare
-
Method Details
-
withAssigner
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.
-