W3cubDocs

/OpenJDK 25

Interface ConstantInstruction.ArgumentConstantInstruction

All Superinterfaces:
ClassFileElement, CodeElement, ConstantInstruction, Instruction
Enclosing interface:
ConstantInstruction
public static sealed interface ConstantInstruction.ArgumentConstantInstruction extends ConstantInstruction
Models an "argument constant" instruction, which encodes the constant value in the instruction directly. Includes bipush and sipush instructions.

An argument constant instruction is composite:

where:
  • opcode must be one of bipush or sipush.
  • constantValue must be in the range of byte, [-128, 127], for bipush, and in the range of short, [-32768, 32767], for sipush.
Since:
24
See Also:

Nested Class Summary

Method Summary

Modifier and Type Method Description
Integer constantValue()
Returns the constant value.
default TypeKind typeKind()
Returns the computational type of the constant.

Methods declared in interface Instruction

opcode, sizeInBytes

Method Details

constantValue

Integer constantValue()
Description copied from interface: ConstantInstruction
Returns the constant value.
Specified by:
constantValue in interface ConstantInstruction
Returns:
the constant value

typeKind

default TypeKind typeKind()
Description copied from interface: ConstantInstruction
Returns the computational type of the constant. This is derived from the constantValue.
Specified by:
typeKind in interface ConstantInstruction
Returns:
the computational type of the constant

© 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/ConstantInstruction.ArgumentConstantInstruction.html