public static enum AppLib.State extends java.lang.Enum<AppLib.State>
AppLib
.Enum Constant and Description |
---|
CONNECTED |
CONNECTING |
IDLE |
NEW |
STOPPING |
TERMINATED |
Modifier and Type | Method and Description |
---|---|
static AppLib.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AppLib.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AppLib.State NEW
public static final AppLib.State IDLE
public static final AppLib.State CONNECTING
public static final AppLib.State CONNECTED
public static final AppLib.State STOPPING
public static final AppLib.State TERMINATED
public static AppLib.State[] values()
for (AppLib.State c : AppLib.State.values()) System.out.println(c);
public static AppLib.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 null