@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public enum DeviceReportedStatus extends Enum<DeviceReportedStatus>
| Enum Constant and Description |
|---|
INSTALL_ERROR |
INSTALL_IN_PROGRESS |
LAUNCH_ERROR |
LAUNCHED |
REMOVAL_FAILED |
REMOVAL_IN_PROGRESS |
RUNNING |
STARTING |
STOP_ERROR |
STOPPED |
STOPPING |
| Modifier and Type | Method and Description |
|---|---|
static DeviceReportedStatus |
fromValue(String value)
Use this in place of valueOf.
|
String |
toString() |
static DeviceReportedStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DeviceReportedStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeviceReportedStatus STOPPING
public static final DeviceReportedStatus STOPPED
public static final DeviceReportedStatus STOP_ERROR
public static final DeviceReportedStatus REMOVAL_FAILED
public static final DeviceReportedStatus REMOVAL_IN_PROGRESS
public static final DeviceReportedStatus STARTING
public static final DeviceReportedStatus RUNNING
public static final DeviceReportedStatus INSTALL_ERROR
public static final DeviceReportedStatus LAUNCHED
public static final DeviceReportedStatus LAUNCH_ERROR
public static final DeviceReportedStatus INSTALL_IN_PROGRESS
public static DeviceReportedStatus[] values()
for (DeviceReportedStatus c : DeviceReportedStatus.values()) System.out.println(c);
public static DeviceReportedStatus valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String toString()
toString in class Enum<DeviceReportedStatus>public static DeviceReportedStatus fromValue(String value)
value - real valueIllegalArgumentException - If the specified value does not map to one of the known values in this enum.