@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public enum DataViewStatus extends Enum<DataViewStatus>
Enum Constant and Description |
---|
CANCELLED |
FAILED |
FAILED_CLEANUP_FAILED |
PENDING |
RUNNING |
STARTING |
SUCCESS |
TIMEOUT |
Modifier and Type | Method and Description |
---|---|
static DataViewStatus |
fromValue(String value)
Use this in place of valueOf.
|
String |
toString() |
static DataViewStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataViewStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataViewStatus RUNNING
public static final DataViewStatus STARTING
public static final DataViewStatus FAILED
public static final DataViewStatus CANCELLED
public static final DataViewStatus TIMEOUT
public static final DataViewStatus SUCCESS
public static final DataViewStatus PENDING
public static final DataViewStatus FAILED_CLEANUP_FAILED
public static DataViewStatus[] values()
for (DataViewStatus c : DataViewStatus.values()) System.out.println(c);
public static DataViewStatus 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<DataViewStatus>
public static DataViewStatus fromValue(String value)
value
- real valueIllegalArgumentException
- If the specified value does not map to one of the known values in this enum.