public enum RadioState extends Enum<RadioState>
| Enum Constant and Description |
|---|
ACQUIRED |
ACQUIRING |
MULTICAST |
NOT_FOUND |
| Modifier and Type | Method and Description |
|---|---|
static RadioState |
valueForString(String value) |
static RadioState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RadioState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RadioState ACQUIRING
public static final RadioState ACQUIRED
public static final RadioState MULTICAST
public static final RadioState NOT_FOUND
public static RadioState[] values()
for (RadioState c : RadioState.values()) System.out.println(c);
public static RadioState 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 nullpublic static RadioState valueForString(String value)