Enum StreamingSessionStatusCode
- java.lang.Object
-
- java.lang.Enum<StreamingSessionStatusCode>
-
- software.amazon.awssdk.services.nimble.model.StreamingSessionStatusCode
-
- All Implemented Interfaces:
Serializable,Comparable<StreamingSessionStatusCode>
@Generated("software.amazon.awssdk:codegen") public enum StreamingSessionStatusCode extends Enum<StreamingSessionStatusCode>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static StreamingSessionStatusCodefromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<StreamingSessionStatusCode>knownValues()StringtoString()static StreamingSessionStatusCodevalueOf(String name)Returns the enum constant of this type with the specified name.static StreamingSessionStatusCode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STREAMING_SESSION_READY
public static final StreamingSessionStatusCode STREAMING_SESSION_READY
-
STREAMING_SESSION_DELETED
public static final StreamingSessionStatusCode STREAMING_SESSION_DELETED
-
STREAMING_SESSION_CREATE_IN_PROGRESS
public static final StreamingSessionStatusCode STREAMING_SESSION_CREATE_IN_PROGRESS
-
STREAMING_SESSION_DELETE_IN_PROGRESS
public static final StreamingSessionStatusCode STREAMING_SESSION_DELETE_IN_PROGRESS
-
INTERNAL_ERROR
public static final StreamingSessionStatusCode INTERNAL_ERROR
-
INSUFFICIENT_CAPACITY
public static final StreamingSessionStatusCode INSUFFICIENT_CAPACITY
-
ACTIVE_DIRECTORY_DOMAIN_JOIN_ERROR
public static final StreamingSessionStatusCode ACTIVE_DIRECTORY_DOMAIN_JOIN_ERROR
-
NETWORK_CONNECTION_ERROR
public static final StreamingSessionStatusCode NETWORK_CONNECTION_ERROR
-
INITIALIZATION_SCRIPT_ERROR
public static final StreamingSessionStatusCode INITIALIZATION_SCRIPT_ERROR
-
DECRYPT_STREAMING_IMAGE_ERROR
public static final StreamingSessionStatusCode DECRYPT_STREAMING_IMAGE_ERROR
-
NETWORK_INTERFACE_ERROR
public static final StreamingSessionStatusCode NETWORK_INTERFACE_ERROR
-
STREAMING_SESSION_STOPPED
public static final StreamingSessionStatusCode STREAMING_SESSION_STOPPED
-
STREAMING_SESSION_STARTED
public static final StreamingSessionStatusCode STREAMING_SESSION_STARTED
-
STREAMING_SESSION_STOP_IN_PROGRESS
public static final StreamingSessionStatusCode STREAMING_SESSION_STOP_IN_PROGRESS
-
STREAMING_SESSION_START_IN_PROGRESS
public static final StreamingSessionStatusCode STREAMING_SESSION_START_IN_PROGRESS
-
AMI_VALIDATION_ERROR
public static final StreamingSessionStatusCode AMI_VALIDATION_ERROR
-
UNKNOWN_TO_SDK_VERSION
public static final StreamingSessionStatusCode UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static StreamingSessionStatusCode[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (StreamingSessionStatusCode c : StreamingSessionStatusCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StreamingSessionStatusCode valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
toString
public String toString()
- Overrides:
toStringin classEnum<StreamingSessionStatusCode>
-
fromValue
public static StreamingSessionStatusCode fromValue(String value)
Use this in place of valueOf to convert the raw string returned by the service into the enum value.- Parameters:
value- real value- Returns:
- StreamingSessionStatusCode corresponding to the value
-
knownValues
public static Set<StreamingSessionStatusCode> knownValues()
Use this in place ofvalues()to return aSetof all values known to the SDK. This will return all known enum values exceptUNKNOWN_TO_SDK_VERSION.- Returns:
- a
Setof knownStreamingSessionStatusCodes
-
-