Package org.openjdk.asmtools.jasm
Enum Tables.StackMapFrameType
- java.lang.Object
-
- java.lang.Enum<Tables.StackMapFrameType>
-
- org.openjdk.asmtools.jasm.Tables.StackMapFrameType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Tables.StackMapFrameType>
- Enclosing class:
- Tables
public static enum Tables.StackMapFrameType extends java.lang.Enum<Tables.StackMapFrameType>
StackMap-FrameType table. These constants are used in stackmap pseudo-instructions only.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description APPEND_FRAME
CHOP_1_FRAME
CHOP_2_FRAME
CHOP_3_FRAME
FULL_FRAME
SAME_FRAME
SAME_FRAME_EX
SAME_LOCALS_1_STACK_ITEM_EXTENDED_FRAME
SAME_LOCALS_1_STACK_ITEM_FRAME
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
parsekey()
java.lang.Integer
value()
static Tables.StackMapFrameType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Tables.StackMapFrameType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SAME_FRAME
public static final Tables.StackMapFrameType SAME_FRAME
-
SAME_LOCALS_1_STACK_ITEM_FRAME
public static final Tables.StackMapFrameType SAME_LOCALS_1_STACK_ITEM_FRAME
-
SAME_LOCALS_1_STACK_ITEM_EXTENDED_FRAME
public static final Tables.StackMapFrameType SAME_LOCALS_1_STACK_ITEM_EXTENDED_FRAME
-
CHOP_1_FRAME
public static final Tables.StackMapFrameType CHOP_1_FRAME
-
CHOP_2_FRAME
public static final Tables.StackMapFrameType CHOP_2_FRAME
-
CHOP_3_FRAME
public static final Tables.StackMapFrameType CHOP_3_FRAME
-
SAME_FRAME_EX
public static final Tables.StackMapFrameType SAME_FRAME_EX
-
APPEND_FRAME
public static final Tables.StackMapFrameType APPEND_FRAME
-
FULL_FRAME
public static final Tables.StackMapFrameType FULL_FRAME
-
-
Method Detail
-
values
public static Tables.StackMapFrameType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Tables.StackMapFrameType c : Tables.StackMapFrameType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Tables.StackMapFrameType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
parsekey
public java.lang.String parsekey()
-
value
public java.lang.Integer value()
-
-