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