public enum DebuggerAction extends Enum<DebuggerAction>
Enum Constant and Description |
---|
NONE |
STEP_INTO |
STEP_OVER |
STEP_RETURN |
Modifier and Type | Method and Description |
---|---|
static DebuggerAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DebuggerAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DebuggerAction NONE
public static final DebuggerAction STEP_INTO
public static final DebuggerAction STEP_OVER
public static final DebuggerAction STEP_RETURN
public static DebuggerAction[] values()
for (DebuggerAction c : DebuggerAction.values()) System.out.println(c);
public static DebuggerAction 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 © 2007-2020 Whitestein Technologies. All Rights Reserved.