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