public static enum DebuggerSession.State extends java.lang.Enum<DebuggerSession.State>
Enum Constant and Description |
---|
DISPOSED |
PAUSED |
RUNNING |
STOPPED |
WAIT_EVALUATION |
WAITING_ATTACH |
Modifier and Type | Method and Description |
---|---|
static DebuggerSession.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DebuggerSession.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DebuggerSession.State STOPPED
public static final DebuggerSession.State RUNNING
public static final DebuggerSession.State WAITING_ATTACH
public static final DebuggerSession.State PAUSED
public static final DebuggerSession.State WAIT_EVALUATION
public static final DebuggerSession.State DISPOSED
public static DebuggerSession.State[] values()
for (DebuggerSession.State c : DebuggerSession.State.values()) System.out.println(c);
public static DebuggerSession.State 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