Enum DeviceManagementEventStatusInProgressOrPending
- java.lang.Object
-
- java.lang.Enum<DeviceManagementEventStatusInProgressOrPending>
-
- co.ecg.alpaca.toolkit.generated.enums.DeviceManagementEventStatusInProgressOrPending
-
- All Implemented Interfaces:
Serializable
,Comparable<DeviceManagementEventStatusInProgressOrPending>
public enum DeviceManagementEventStatusInProgressOrPending extends Enum<DeviceManagementEventStatusInProgressOrPending>
The status of 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 'Process On Other Host', meaning that it is currently being processed on another host. 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
PROCESSONOTHERHOST
QUEUED
STALE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DeviceManagementEventStatusInProgressOrPending
get(String value)
static DeviceManagementEventStatusInProgressOrPending[]
getArray(String[] values)
String
toString()
String
value()
static DeviceManagementEventStatusInProgressOrPending
valueOf(String name)
Returns the enum constant of this type with the specified name.static DeviceManagementEventStatusInProgressOrPending[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PENDING
public static final DeviceManagementEventStatusInProgressOrPending PENDING
-
QUEUED
public static final DeviceManagementEventStatusInProgressOrPending QUEUED
-
INPROGRESS
public static final DeviceManagementEventStatusInProgressOrPending INPROGRESS
-
PROCESSONOTHERHOST
public static final DeviceManagementEventStatusInProgressOrPending PROCESSONOTHERHOST
-
STALE
public static final DeviceManagementEventStatusInProgressOrPending STALE
-
-
Method Detail
-
values
public static DeviceManagementEventStatusInProgressOrPending[] 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 (DeviceManagementEventStatusInProgressOrPending c : DeviceManagementEventStatusInProgressOrPending.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DeviceManagementEventStatusInProgressOrPending 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<DeviceManagementEventStatusInProgressOrPending>
-
get
public static DeviceManagementEventStatusInProgressOrPending get(String value)
-
getArray
public static DeviceManagementEventStatusInProgressOrPending[] getArray(String[] values)
-
-