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