public enum GlobalState extends Enum<GlobalState>
| Enum Constant and Description |
|---|
ASSOCIATED |
NULL |
STOPPED |
STOPPING |
TRAFFIC |
WAITING_ASSOC |
| Modifier and Type | Method and Description |
|---|---|
static GlobalState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GlobalState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GlobalState NULL
public static final GlobalState WAITING_ASSOC
public static final GlobalState ASSOCIATED
public static final GlobalState TRAFFIC
public static final GlobalState STOPPING
public static final GlobalState STOPPED
public static GlobalState[] values()
for (GlobalState c : GlobalState.values()) System.out.println(c);
public static GlobalState 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 nullCopyright © 2017. All Rights Reserved.