public static enum RestSoftAPConnector.STATE extends java.lang.Enum<RestSoftAPConnector.STATE>
Enum Constant and Description |
---|
BUSY
The server is busy, it will soon stop.
|
READY
The server is ready.
|
Modifier and Type | Method and Description |
---|---|
static RestSoftAPConnector.STATE |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RestSoftAPConnector.STATE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RestSoftAPConnector.STATE READY
public static final RestSoftAPConnector.STATE BUSY
public static RestSoftAPConnector.STATE[] values()
for (RestSoftAPConnector.STATE c : RestSoftAPConnector.STATE.values()) System.out.println(c);
public static RestSoftAPConnector.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