public enum SystemCommandType extends java.lang.Enum<SystemCommandType>
| Enum Constant and Description |
|---|
DeviceMappingAck
Acknowledges response of device mapping operation
|
DeviceStreamAck
Acknowledges device stream creation
|
RegistrationAck
Acknowledges successful registration
|
RegistrationFailure
Indicates failed registration
|
SendDeviceStreamData
Sends a chunk of device stream data
|
| Modifier and Type | Method and Description |
|---|---|
static SystemCommandType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SystemCommandType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SystemCommandType RegistrationAck
public static final SystemCommandType RegistrationFailure
public static final SystemCommandType DeviceStreamAck
public static final SystemCommandType SendDeviceStreamData
public static final SystemCommandType DeviceMappingAck
public static SystemCommandType[] values()
for (SystemCommandType c : SystemCommandType.values()) System.out.println(c);
public static SystemCommandType 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