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