public static enum DeviceRequest.Type extends java.lang.Enum<DeviceRequest.Type>
Enum Constant and Description |
---|
Acknowledge
Send a command acknowledgement
|
DeviceAlert
Send a device alert event
|
DeviceLocation
Send a device location event
|
DeviceMeasurements
Send a device measurements event
|
DeviceStream
Send a device steam create request
|
DeviceStreamData
Send a device stream data event
|
MapDevice
Map a device to a slot on a composite device
|
RegisterDevice
Register a device
|
Modifier and Type | Method and Description |
---|---|
static DeviceRequest.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DeviceRequest.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeviceRequest.Type RegisterDevice
public static final DeviceRequest.Type DeviceLocation
public static final DeviceRequest.Type DeviceAlert
public static final DeviceRequest.Type DeviceMeasurements
public static final DeviceRequest.Type DeviceStream
public static final DeviceRequest.Type DeviceStreamData
public static final DeviceRequest.Type Acknowledge
public static final DeviceRequest.Type MapDevice
public static DeviceRequest.Type[] values()
for (DeviceRequest.Type c : DeviceRequest.Type.values()) System.out.println(c);
public static DeviceRequest.Type 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