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