public enum StackFramePresentationHint extends java.lang.Enum<StackFramePresentationHint>
A value of 'label' can be used to indicate that the frame is an artificial frame that is used as a visual label or separator. A value of 'subtle' can be used to change the appearance of a frame in a 'subtle' way.
| Modifier and Type | Method and Description |
|---|---|
static StackFramePresentationHint |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StackFramePresentationHint[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StackFramePresentationHint NORMAL
public static final StackFramePresentationHint LABEL
public static final StackFramePresentationHint SUBTLE
public static StackFramePresentationHint[] values()
for (StackFramePresentationHint c : StackFramePresentationHint.values()) System.out.println(c);
public static StackFramePresentationHint valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null