public static enum DebuggerSession.Event extends java.lang.Enum<DebuggerSession.Event>
Enum Constant and Description |
---|
ATTACHED |
CONTEXT |
DETACHED |
DISPOSE |
PAUSE |
REFRESH |
REFRESH_WITH_STACK |
RESUME |
START_WAIT_ATTACH |
STEP |
THREADS_REFRESH |
Modifier and Type | Method and Description |
---|---|
static DebuggerSession.Event |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DebuggerSession.Event[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DebuggerSession.Event ATTACHED
public static final DebuggerSession.Event DETACHED
public static final DebuggerSession.Event RESUME
public static final DebuggerSession.Event STEP
public static final DebuggerSession.Event PAUSE
public static final DebuggerSession.Event REFRESH
public static final DebuggerSession.Event CONTEXT
public static final DebuggerSession.Event START_WAIT_ATTACH
public static final DebuggerSession.Event DISPOSE
public static final DebuggerSession.Event REFRESH_WITH_STACK
public static final DebuggerSession.Event THREADS_REFRESH
public static DebuggerSession.Event[] values()
for (DebuggerSession.Event c : DebuggerSession.Event.values()) System.out.println(c);
public static DebuggerSession.Event 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