Enum DeviceManagementEventStatusForCancel
- java.lang.Object
-
- java.lang.Enum<DeviceManagementEventStatusForCancel>
-
- co.ecg.alpaca.toolkit.generated.enums.DeviceManagementEventStatusForCancel
-
- All Implemented Interfaces:
Serializable
,Comparable<DeviceManagementEventStatusForCancel>
public enum DeviceManagementEventStatusForCancel extends Enum<DeviceManagementEventStatusForCancel>
The possible status used to cancel a device management co.ecg.alpaca.remote.event. It can be 'Pending', meaning that it is not yet queued for processing. It can be 'Queued', waiting to be processed. It can be 'In Progress', meaning that it is currently being processed. It can be 'Stale', meaning that it should currently be queued in the internal Device Management queue but is not.- Author:
- AlpacaGenerator
-
-
Enum Constant Summary
Enum Constants Enum Constant Description INPROGRESS
PENDING
QUEUED
STALE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DeviceManagementEventStatusForCancel
get(String value)
static DeviceManagementEventStatusForCancel[]
getArray(String[] values)
String
toString()
String
value()
static DeviceManagementEventStatusForCancel
valueOf(String name)
Returns the enum constant of this type with the specified name.static DeviceManagementEventStatusForCancel[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PENDING
public static final DeviceManagementEventStatusForCancel PENDING
-
QUEUED
public static final DeviceManagementEventStatusForCancel QUEUED
-
INPROGRESS
public static final DeviceManagementEventStatusForCancel INPROGRESS
-
STALE
public static final DeviceManagementEventStatusForCancel STALE
-
-
Method Detail
-
values
public static DeviceManagementEventStatusForCancel[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (DeviceManagementEventStatusForCancel c : DeviceManagementEventStatusForCancel.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DeviceManagementEventStatusForCancel valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
value
public String value()
-
toString
public String toString()
- Overrides:
toString
in classEnum<DeviceManagementEventStatusForCancel>
-
get
public static DeviceManagementEventStatusForCancel get(String value)
-
getArray
public static DeviceManagementEventStatusForCancel[] getArray(String[] values)
-
-