ClassFileElement, CodeElement, Instructionpublic sealed interface ConvertInstruction extends Instruction
code array of a Code attribute, such as i2l. Corresponding opcodes have a kind of Opcode.Kind.CONVERT. Delivered as a CodeElement when traversing the elements of a CodeModel. A primitive conversion instruction is composite:
ConvertInstruction(
TypeKind fromType,
TypeKind toType
)
int, long, float, and double, where fromType != toType; int to byte, char, and short. | Modifier and Type | Method | Description |
|---|---|---|
TypeKind |
fromType() |
Returns the source type to convert from. |
static ConvertInstruction |
of |
Returns a conversion instruction. |
static ConvertInstruction |
of |
Returns a conversion instruction. |
TypeKind |
toType() |
Returns the destination type to convert to. |
opcode, sizeInBytes
TypeKind fromType()
TypeKind toType()
static ConvertInstruction of(TypeKind fromType, TypeKind toType)
int, long, float, and double, where fromType != toType; int to byte, char, and short. fromType - the type to convert fromtoType - the type to convert toIllegalArgumentException - if this is not a valid conversionstatic ConvertInstruction of(Opcode op)
op - the opcode for the specific type of conversion instruction, which must be of kind Opcode.Kind.CONVERT
IllegalArgumentException - if the opcode kind is not Opcode.Kind.CONVERT.
© 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/ConvertInstruction.html