public static enum DebuggerParameter.Mode extends java.lang.Enum<DebuggerParameter.Mode>
Red (tfeng) |
Yellow (tfeng) |
Enum Constant and Description |
---|
A_DISPLAY
The mode to display the messages in a tableau.
|
B_CHECK_LOG
The mode to check whether the messages are identical to those in the
log.
|
C_RECORD_LOG
The mode to record the messages in the log.
|
Modifier and Type | Method and Description |
---|---|
static DebuggerParameter.Mode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DebuggerParameter.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DebuggerParameter.Mode A_DISPLAY
public static final DebuggerParameter.Mode B_CHECK_LOG
public static final DebuggerParameter.Mode C_RECORD_LOG
public static DebuggerParameter.Mode[] values()
for (DebuggerParameter.Mode c : DebuggerParameter.Mode.values()) System.out.println(c);
public static DebuggerParameter.Mode 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