public enum StackFrameType extends Enum<StackFrameType>
Enum Constant and Description |
---|
APPEND_FRAME |
CHOP_FRAME |
FULL_FRAME |
SAME_FRAME |
SAME_FRAME_EXTENDED |
SAME_LOCALS_1_STACK |
Modifier and Type | Method and Description |
---|---|
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_FRAME
public static final StackFrameType SAME_LOCALS_1_STACK
public static final StackFrameType CHOP_FRAME
public static final StackFrameType SAME_FRAME_EXTENDED
public static final StackFrameType APPEND_FRAME
public static final StackFrameType FULL_FRAME
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 nullCopyright © 2015. All rights reserved.