public static enum DebugContext.State extends java.lang.Enum<DebugContext.State>
Enum Constant and Description |
---|
EXCEPTION
A suspension due to an exception.
|
NORMAL
A normal suspension (a step end or a breakpoint).
|
Modifier and Type | Method and Description |
---|---|
static DebugContext.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DebugContext.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DebugContext.State NORMAL
public static final DebugContext.State EXCEPTION
public static DebugContext.State[] values()
for (DebugContext.State c : DebugContext.State.values()) System.out.println(c);
public static DebugContext.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 nullCopyright (c) IBM Corp. and others 2000, 2016. All Rights Reserved.