public class MethodHandleConstant extends Object implements StackManipulation
MethodHandle
.StackManipulation.Compound, StackManipulation.Illegal, StackManipulation.LegalTrivial, StackManipulation.Size
Modifier and Type | Method and Description |
---|---|
StackManipulation.Size |
apply(org.objectweb.asm.MethodVisitor methodVisitor,
Instrumentation.Context instrumentationContext)
Applies the stack manipulation that is described by this instance.
|
boolean |
equals(Object other) |
int |
hashCode() |
static boolean |
isRepresentedBy(TypeDescription typeDescription)
Checks if a type represents the
MethodHandle type. |
boolean |
isValid()
Determines if this stack manipulation is valid.
|
static StackManipulation |
of(MethodDescription methodDescription)
Creates a method handle for a method.
|
static StackManipulation |
ofGetter(FieldDescription fieldDescription)
Creates a method handle for a field getter.
|
static StackManipulation |
ofPutter(FieldDescription fieldDescription)
Creates a method handle for a field putter.
|
String |
toString() |
public static boolean isRepresentedBy(TypeDescription typeDescription)
MethodHandle
type.typeDescription
- The type to be checked.true
if the given type represents a MethodHandle
.public static StackManipulation of(MethodDescription methodDescription)
methodDescription
- The method for which a method handle is to be put onto the operand stack.public static StackManipulation ofGetter(FieldDescription fieldDescription)
fieldDescription
- The field for which a get handle is to be put onto the operand stack.public static StackManipulation ofPutter(FieldDescription fieldDescription)
fieldDescription
- The field for which a put handle is to be put onto the operand stack.public boolean isValid()
StackManipulation
isValid
in interface StackManipulation
false
, this manipulation cannot be applied and should throw an exception.public StackManipulation.Size apply(org.objectweb.asm.MethodVisitor methodVisitor, Instrumentation.Context instrumentationContext)
StackManipulation
apply
in interface StackManipulation
methodVisitor
- The method visitor used to write the method implementation to.instrumentationContext
- The context of the current instrumentation.Copyright © 2014. All rights reserved.