Package net.bytebuddy.asm
Annotation Interface Advice.Enter
- Enclosing class:
Advice
Indicates that the annotated parameter should be mapped to the value that is returned by the advice method that is annotated
by Advice.OnMethodEnter.
Note
: This annotation must only be used within anAdvice.OnMethodExit advice and is only meaningful in
combination with an Advice.OnMethodEnter advice.- See Also:
-
Optional Element Summary
Optional ElementsModifier and TypeOptional ElementDescriptionbooleanIndicates if it is possible to write to this parameter.The typing that should be applied when assigning the enter value.
-
Element Details
-
readOnly
boolean readOnlyIndicates if it is possible to write to this parameter. If this property is set to
false, the annotated type must be equal to the type declaring the instrumented method if the typing is not also set toAssigner.Typing.DYNAMIC. If this property is set totrue, the annotated parameter can be any super type of the instrumented method's declaring type.Important: This property must be set to
trueif the advice method is not inlined.- Returns:
trueif this parameter is read-only.
- Default:
true
-
typing
Assigner.Typing typingThe typing that should be applied when assigning the enter value.- Returns:
- The typing to apply upon assignment.
- Default:
STATIC
-