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