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