public static enum DefaultDriverHandler.Mode extends java.lang.Enum<DefaultDriverHandler.Mode>
Enum Constant and Description |
---|
CONSOLE
Displays a console message
|
GUI
GUI (Swing)
|
SILENT
Displays nothing
|
Modifier and Type | Method and Description |
---|---|
static DefaultDriverHandler.Mode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DefaultDriverHandler.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DefaultDriverHandler.Mode GUI
public static final DefaultDriverHandler.Mode CONSOLE
public static final DefaultDriverHandler.Mode SILENT
public static DefaultDriverHandler.Mode[] values()
for (DefaultDriverHandler.Mode c : DefaultDriverHandler.Mode.values()) System.out.println(c);
public static DefaultDriverHandler.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