ClassFileElement, CodeElement, Instructionpublic sealed interface InvokeDynamicInstruction extends Instruction
code array of a Code attribute. The corresponding opcode is invokedynamic. Delivered as a CodeElement when traversing the elements of a CodeModel. A dynamically-computed call site invocation instruction is composite:
InvokeDynamicInstruction(InvokeDynamicEntry invokedynamic)
| Modifier and Type | Method | Description |
|---|---|---|
default List |
bootstrapArgs() |
Returns the bootstrap arguments of the call site. |
default DirectMethodHandleDesc |
bootstrapMethod() |
Returns the bootstrap method of the call site. |
InvokeDynamicEntry |
invokedynamic() |
Returns an InvokeDynamicEntry describing the call site. |
default Utf8Entry |
name() |
Returns the invocation name of the call site. |
static InvokeDynamicInstruction |
of |
Returns an invokedynamic instruction. |
default Utf8Entry |
type() |
Returns the invocation type of the call site. |
default MethodTypeDesc |
typeSymbol() |
Returns the invocation type of the call site, as a symbolic descriptor. |
opcode, sizeInBytes
InvokeDynamicEntry invokedynamic()
InvokeDynamicEntry describing the call site.InvokeDynamicEntry describing the call sitedefault Utf8Entry name()
default Utf8Entry type()
typeSymbol().default MethodTypeDesc typeSymbol()
default DirectMethodHandleDesc bootstrapMethod()
default List<ConstantDesc> bootstrapArgs()
static InvokeDynamicInstruction of(InvokeDynamicEntry invokedynamic)
invokedynamic - the constant pool entry describing the call site
© 1993, 2025, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/25/docs/api/java.base/java/lang/classfile/instruction/InvokeDynamicInstruction.html