public enum StackFrameType extends Enum<StackFrameType>
Enum Constant and Description |
---|
APPEND |
CHOP |
FULL |
SAME |
SAME_EXT |
SAME_LOCALS_1_STACK_ITEM |
SAME_LOCALS_1_STACK_ITEM_EXT |
Modifier and Type | Method and Description |
---|---|
static StackFrameType |
getFromTag(int tag) |
static StackFrameType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StackFrameType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StackFrameType SAME
public static final StackFrameType SAME_LOCALS_1_STACK_ITEM
public static final StackFrameType SAME_LOCALS_1_STACK_ITEM_EXT
public static final StackFrameType CHOP
public static final StackFrameType SAME_EXT
public static final StackFrameType APPEND
public static final StackFrameType FULL
public static StackFrameType[] values()
for (StackFrameType c : StackFrameType.values()) System.out.println(c);
public static StackFrameType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is nullpublic static StackFrameType getFromTag(int tag) throws InvalidByteCodeException
InvalidByteCodeException