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