public static enum DctConstants.State extends Enum<DctConstants.State>
Enum Constant and Description |
---|
CONNECTED |
CONNECTING |
DISCONNECTING |
FAILED |
IDLE |
RETRYING |
SCANNING |
Modifier and Type | Method and Description |
---|---|
static DctConstants.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DctConstants.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DctConstants.State IDLE
public static final DctConstants.State CONNECTING
public static final DctConstants.State SCANNING
public static final DctConstants.State CONNECTED
public static final DctConstants.State DISCONNECTING
public static final DctConstants.State FAILED
public static final DctConstants.State RETRYING
public static DctConstants.State[] values()
for (DctConstants.State c : DctConstants.State.values()) System.out.println(c);
public static DctConstants.State valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null