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