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