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