Serializable, Comparable<Opcode.Kind>, ConstableOpcodepublic static enum Opcode.Kind extends Enum<Opcode.Kind>
Enum.EnumDesc<E>
| Enum Constant | Description |
|---|---|
ARRAY_LOAD |
Load from array. |
ARRAY_STORE |
Store into array. |
BRANCH |
Branch. |
CONSTANT |
Constants. |
CONVERT |
Type conversions. |
DISCONTINUED_JSR |
Discontinued jump subroutine. |
DISCONTINUED_RET |
Discontinued return from subroutine. |
FIELD_ACCESS |
Access field. |
INCREMENT |
Increment local variable. |
INVOKE |
Invoke method or constructor. |
INVOKE_DYNAMIC |
Invoke a dynamically-computed call site. |
LOAD |
Load from local variable. |
LOOKUP_SWITCH |
Access jump table by key match and jump. |
MONITOR |
Monitor. |
NEW_MULTI_ARRAY |
Create new multidimensional array. |
NEW_OBJECT |
Create new object. |
NEW_PRIMITIVE_ARRAY |
Create new array. |
NEW_REF_ARRAY |
Create new reference array. |
NOP |
Do nothing. |
OPERATOR |
Operators. |
RETURN |
Return from method. |
STACK |
Stack operations. |
STORE |
Store into local variable. |
TABLE_SWITCH |
Access jump table by index and jump. |
THROW_EXCEPTION |
Throw exception or error. |
TYPE_CHECK |
Check whether object is of given type. |
| Modifier and Type | Method | Description |
|---|---|---|
static Opcode.Kind |
valueOf |
Returns the enum constant of this class with the specified name. |
static Opcode.Kind[] |
values() |
Returns an array containing the constants of this enum class, in the order they are declared. |
public static final Opcode.Kind LOAD
public static final Opcode.Kind STORE
public static final Opcode.Kind INCREMENT
public static final Opcode.Kind BRANCH
public static final Opcode.Kind LOOKUP_SWITCH
public static final Opcode.Kind TABLE_SWITCH
public static final Opcode.Kind RETURN
public static final Opcode.Kind THROW_EXCEPTION
public static final Opcode.Kind FIELD_ACCESS
public static final Opcode.Kind INVOKE
public static final Opcode.Kind INVOKE_DYNAMIC
public static final Opcode.Kind NEW_OBJECT
public static final Opcode.Kind NEW_PRIMITIVE_ARRAY
public static final Opcode.Kind NEW_MULTI_ARRAY
public static final Opcode.Kind TYPE_CHECK
public static final Opcode.Kind ARRAY_LOAD
public static final Opcode.Kind ARRAY_STORE
public static final Opcode.Kind STACK
public static final Opcode.Kind CONVERT
public static final Opcode.Kind OPERATOR
public static final Opcode.Kind CONSTANT
public static final Opcode.Kind MONITOR
public static final Opcode.Kind NOP
public static final Opcode.Kind DISCONTINUED_JSR
public static final Opcode.Kind DISCONTINUED_RET
public static Opcode.Kind[] values()
public static Opcode.Kind valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum class has no constant with the specified nameNullPointerException - if the argument is null
© 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/Opcode.Kind.html