Preview
Second Preview of ClassFile API (JEP 466).
Programs can only use TypeCheckInstruction
when preview features are enabled.
Preview features may be removed in a future release,
or upgraded to permanent features of the Java platform.
instanceof
or checkcast
instruction in the code
array of a Code
attribute. Delivered as a CodeElement
when traversing the elements of a CodeModel
.
Modifier and Type | Method and Description |
---|---|
public static TypeCheckInstruction | Returns: a type check instructionthe opcode for the specific type of type check instruction,
which must be of kind op, ClassEntry Opcode. the type against which to check or cast type)Returns a type check instruction. |
public static TypeCheckInstruction | Returns: a type check instructionthe opcode for the specific type of type check instruction,
which must be of kind op, ClassDesc Opcode. the type against which to check or cast type)Returns a type check instruction. |
public ClassEntry | Returns: the type against which the instruction checks or castsReturns the type against which the instruction checks or casts. |
of | back to summary |
---|---|
public static TypeCheckInstruction of(Opcode op, ClassEntry type) Returns a type check instruction.
|
of | back to summary |
---|---|
public static TypeCheckInstruction of(Opcode op, ClassDesc type) Returns a type check instruction.
|
type | back to summary |
---|---|
public ClassEntry type() Returns the type against which the instruction checks or casts.
|