public static enum AccessDeviceEvent.Type extends Enum<AccessDeviceEvent.Type>
| Enum Constant and Description |
|---|
DEVICE_CONNECTED
An access device connected.
|
DEVICE_DISCONNECTED
An access device disconnected.
|
SUBSCRIBER_REGISTERED
A subscriber was registered and provisioned.
|
SUBSCRIBER_UNREGISTERED
A subscriber was unregistered and deprovisioned.
|
| Modifier and Type | Method and Description |
|---|---|
static AccessDeviceEvent.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AccessDeviceEvent.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccessDeviceEvent.Type SUBSCRIBER_REGISTERED
public static final AccessDeviceEvent.Type SUBSCRIBER_UNREGISTERED
public static final AccessDeviceEvent.Type DEVICE_CONNECTED
public static final AccessDeviceEvent.Type DEVICE_DISCONNECTED
public static AccessDeviceEvent.Type[] values()
for (AccessDeviceEvent.Type c : AccessDeviceEvent.Type.values()) System.out.println(c);
public static AccessDeviceEvent.Type 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 © 2016. All rights reserved.