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