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