public class MethodHandleConstant extends Object implements StackManipulation
java.lang.invoke.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
java.lang.invoke.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)
java.lang.invoke.MethodHandle type.typeDescription - The type to be checked.true if the given type represents a java.lang.invoke.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()
StackManipulationisValid in interface StackManipulationfalse, this manipulation cannot be applied and should throw an exception.public StackManipulation.Size apply(org.objectweb.asm.MethodVisitor methodVisitor, Instrumentation.Context instrumentationContext)
StackManipulationapply in interface StackManipulationmethodVisitor - The method visitor used to write the method implementation to.instrumentationContext - The context of the current instrumentation.Copyright © 2014. All rights reserved.