Class InvokeDynamic
- java.lang.Object
-
- com.tonic.parser.constpool.structure.InvokeDynamic
-
public class InvokeDynamic extends Object
The index pair carried by a CONSTANT_InvokeDynamic pool entry.
-
-
Constructor Summary
Constructors Constructor Description InvokeDynamic(int bootstrapMethodAttrIndex, int nameAndTypeIndex)Creates an invokedynamic reference from its raw indices.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetBootstrapMethodAttrIndex()intgetNameAndTypeIndex()StringtoString()
-
-
-
Constructor Detail
-
InvokeDynamic
public InvokeDynamic(int bootstrapMethodAttrIndex, int nameAndTypeIndex)Creates an invokedynamic reference from its raw indices.- Parameters:
bootstrapMethodAttrIndex- index into the BootstrapMethods attributenameAndTypeIndex- constant pool index of the call site name and type
-
-