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