public enum DeviceManagementReportStatus extends java.lang.Enum<DeviceManagementReportStatus>
| Enum Constant and Description |
|---|
COMPLETED
completed
|
FAILED
failed
|
IN_PROGRESS
in Progress
|
NOT_STARTED
not Started
|
UNEXPECTED_VALUE
For DeviceManagementReportStatus values that were not expected from the service
|
UNKNOWN
unknown
|
| Modifier and Type | Method and Description |
|---|---|
static DeviceManagementReportStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DeviceManagementReportStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeviceManagementReportStatus UNKNOWN
public static final DeviceManagementReportStatus NOT_STARTED
public static final DeviceManagementReportStatus IN_PROGRESS
public static final DeviceManagementReportStatus COMPLETED
public static final DeviceManagementReportStatus FAILED
public static final DeviceManagementReportStatus UNEXPECTED_VALUE
public static DeviceManagementReportStatus[] values()
for (DeviceManagementReportStatus c : DeviceManagementReportStatus.values()) System.out.println(c);
public static DeviceManagementReportStatus 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