Package jminusminus
Enum Class CLConstants.Category
- All Implemented Interfaces:
Serializable
,Comparable<CLConstants.Category>
,Constable
- Enclosing class:
CLConstants
We classify the JVM instructions into the following categories.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionArithmetic instructions.Arithmetic instructions.Array instructions.Array instructions.Array instructions.Bitwise instructions.Comparison instructions.Conversion instructions.Field instructions.Control-flow instructions.Control-flow instructions.Control-flow instructions.Control-flow instructions.Load-store instructions.Load-store instructions.Load-store instructions.Load-store instructions.Method instructions.Method instructions.Miscellaneous instructions.Object instructions.Stack instructions. -
Method Summary
Modifier and TypeMethodDescriptionstatic CLConstants.Category
Returns the enum constant of this class with the specified name.static CLConstants.Category[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ARITHMETIC1
Arithmetic instructions. -
ARITHMETIC2
Arithmetic instructions. -
ARRAY1
Array instructions. -
ARRAY2
Array instructions. -
ARRAY3
Array instructions. -
BIT
Bitwise instructions. -
COMPARISON
Comparison instructions. -
CONVERSION
Conversion instructions. -
FIELD
Field instructions. -
FLOW_CONTROL1
Control-flow instructions. -
FLOW_CONTROL2
Control-flow instructions. -
FLOW_CONTROL3
Control-flow instructions. -
FLOW_CONTROL4
Control-flow instructions. -
LOAD_STORE1
Load-store instructions. -
LOAD_STORE2
Load-store instructions. -
LOAD_STORE3
Load-store instructions. -
LOAD_STORE4
Load-store instructions. -
METHOD1
Method instructions. -
METHOD2
Method instructions. -
MISC
Miscellaneous instructions. -
OBJECT
Object instructions. -
STACK
Stack instructions.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-