Package net.bytebuddy.asm
Enum Advice.OffsetMapping.ForInstrumentedMethod
- java.lang.Object
-
- java.lang.Enum<Advice.OffsetMapping.ForInstrumentedMethod>
-
- net.bytebuddy.asm.Advice.OffsetMapping.ForInstrumentedMethod
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Advice.OffsetMapping.ForInstrumentedMethod>
,Advice.OffsetMapping
- Enclosing interface:
- Advice.OffsetMapping
public static enum Advice.OffsetMapping.ForInstrumentedMethod extends java.lang.Enum<Advice.OffsetMapping.ForInstrumentedMethod> implements Advice.OffsetMapping
Maps a constant representing the instrumented method.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface net.bytebuddy.asm.Advice.OffsetMapping
Advice.OffsetMapping.Factory<T extends java.lang.annotation.Annotation>, Advice.OffsetMapping.ForAllArguments, Advice.OffsetMapping.ForArgument, Advice.OffsetMapping.ForEnterValue, Advice.OffsetMapping.ForExitValue, Advice.OffsetMapping.ForField, Advice.OffsetMapping.ForInstrumentedMethod, Advice.OffsetMapping.ForInstrumentedType, Advice.OffsetMapping.ForLocalValue, Advice.OffsetMapping.ForOrigin, Advice.OffsetMapping.ForReturnValue, Advice.OffsetMapping.ForSerializedValue, Advice.OffsetMapping.ForStackManipulation, Advice.OffsetMapping.ForStubValue, Advice.OffsetMapping.ForThisReference, Advice.OffsetMapping.ForThrowable, Advice.OffsetMapping.ForUnusedValue, Advice.OffsetMapping.Sort, Advice.OffsetMapping.Target
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONSTRUCTOR
A constant that must be aConstructor
instance.EXECUTABLE
A constant that must be ajava.lang.reflect.Executable
instance.METHOD
A constant that must be aMethod
instance.
-
Constructor Summary
Constructors Modifier Constructor Description private
ForInstrumentedMethod()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected abstract boolean
isRepresentable(MethodDescription instrumentedMethod)
Checks if the supplied method is representable for the assigned offset mapping.Advice.OffsetMapping.Target
resolve(TypeDescription instrumentedType, MethodDescription instrumentedMethod, Assigner assigner, Advice.ArgumentHandler argumentHandler, Advice.OffsetMapping.Sort sort)
Resolves an offset mapping to a given target offset.static Advice.OffsetMapping.ForInstrumentedMethod
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Advice.OffsetMapping.ForInstrumentedMethod[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
METHOD
public static final Advice.OffsetMapping.ForInstrumentedMethod METHOD
A constant that must be aMethod
instance.
-
CONSTRUCTOR
public static final Advice.OffsetMapping.ForInstrumentedMethod CONSTRUCTOR
A constant that must be aConstructor
instance.
-
EXECUTABLE
public static final Advice.OffsetMapping.ForInstrumentedMethod EXECUTABLE
A constant that must be ajava.lang.reflect.Executable
instance.
-
-
Method Detail
-
values
public static Advice.OffsetMapping.ForInstrumentedMethod[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Advice.OffsetMapping.ForInstrumentedMethod c : Advice.OffsetMapping.ForInstrumentedMethod.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Advice.OffsetMapping.ForInstrumentedMethod valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
resolve
public Advice.OffsetMapping.Target resolve(TypeDescription instrumentedType, MethodDescription instrumentedMethod, Assigner assigner, Advice.ArgumentHandler argumentHandler, Advice.OffsetMapping.Sort sort)
Resolves an offset mapping to a given target offset.- Specified by:
resolve
in interfaceAdvice.OffsetMapping
- Parameters:
instrumentedType
- The instrumented type.instrumentedMethod
- The instrumented method for which the mapping is to be resolved.assigner
- The assigner to use.argumentHandler
- The argument handler to use for resolving offsets of the local variable array of the instrumented method.sort
- The sort of the advice method being resolved.- Returns:
- A suitable target mapping.
-
isRepresentable
protected abstract boolean isRepresentable(MethodDescription instrumentedMethod)
Checks if the supplied method is representable for the assigned offset mapping.- Parameters:
instrumentedMethod
- The instrumented method to represent.- Returns:
true
if this method is representable.
-
-