public enum DeviceOperations extends java.lang.Enum<DeviceOperations>
| Modifier and Type | Method and Description |
|---|---|
static DeviceOperations |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DeviceOperations[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeviceOperations DEVICE_OPERATION_TWIN_GET_REQUEST
public static final DeviceOperations DEVICE_OPERATION_TWIN_GET_RESPONSE
public static final DeviceOperations DEVICE_OPERATION_TWIN_UPDATE_REPORTED_PROPERTIES_REQUEST
public static final DeviceOperations DEVICE_OPERATION_TWIN_UPDATE_REPORTED_PROPERTIES_RESPONSE
public static final DeviceOperations DEVICE_OPERATION_TWIN_SUBSCRIBE_DESIRED_PROPERTIES_REQUEST
public static final DeviceOperations DEVICE_OPERATION_TWIN_SUBSCRIBE_DESIRED_PROPERTIES_RESPONSE
public static final DeviceOperations DEVICE_OPERATION_TWIN_UNSUBSCRIBE_DESIRED_PROPERTIES_REQUEST
public static final DeviceOperations DEVICE_OPERATION_TWIN_UNSUBSCRIBE_DESIRED_PROPERTIES_RESPONSE
public static final DeviceOperations DEVICE_OPERATION_METHOD_SUBSCRIBE_REQUEST
public static final DeviceOperations DEVICE_OPERATION_METHOD_SUBSCRIBE_RESPONSE
public static final DeviceOperations DEVICE_OPERATION_METHOD_RECEIVE_REQUEST
public static final DeviceOperations DEVICE_OPERATION_METHOD_SEND_RESPONSE
public static final DeviceOperations DEVICE_OPERATION_UNKNOWN
public static DeviceOperations[] values()
for (DeviceOperations c : DeviceOperations.values()) System.out.println(c);
public static DeviceOperations 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 nullCopyright © 2023. All rights reserved.