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