Enum Constant and Description |
---|
DISCONNECT
Disconnect from server.
|
IGNORE
Ignore the key press.
|
QUIT
Quit the application.
|
Modifier and Type | Method and Description |
---|---|
static EscAction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EscAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EscAction IGNORE
public static final EscAction DISCONNECT
public static final EscAction QUIT
public static EscAction[] values()
for (EscAction c : EscAction.values()) System.out.println(c);
public static EscAction 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