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