public enum DeviceServiceType extends java.lang.Enum<DeviceServiceType>
| Enum Constant and Description |
|---|
BATCH_ZERO_PROVISION
device support batch zero provision
|
GET_ERROR_CODE
can get device error code
|
OFFLINE_LOG
device support to get offline log
|
OFFLINE_OTA
device support offline ota
|
| Modifier and Type | Method and Description |
|---|---|
static DeviceServiceType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DeviceServiceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeviceServiceType GET_ERROR_CODE
public static final DeviceServiceType OFFLINE_OTA
public static final DeviceServiceType OFFLINE_LOG
public static final DeviceServiceType BATCH_ZERO_PROVISION
public static DeviceServiceType[] values()
for (DeviceServiceType c : DeviceServiceType.values()) System.out.println(c);
public static DeviceServiceType 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