public enum CBEventType extends java.lang.Enum<CBEventType>
| Enum Constant and Description |
|---|
ENTER
Beacon event state inside (onEnter)
|
EXIT
Beacon event state outside (onExit)
|
FAR
Beacon event state in range with far proximity
|
IMMEDIATE
Beacon event state in range with immediate proximity
|
NEAR
Beacon event state in range with near proximity
|
| Modifier and Type | Method and Description |
|---|---|
static CBEventType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CBEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CBEventType ENTER
public static final CBEventType EXIT
public static final CBEventType IMMEDIATE
public static final CBEventType NEAR
public static final CBEventType FAR
public static CBEventType[] values()
for (CBEventType c : CBEventType.values()) System.out.println(c);
public static CBEventType 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