Enum StreamingImageStatusCode
- java.lang.Object
-
- java.lang.Enum<StreamingImageStatusCode>
-
- software.amazon.awssdk.services.nimble.model.StreamingImageStatusCode
-
- All Implemented Interfaces:
Serializable,Comparable<StreamingImageStatusCode>
@Generated("software.amazon.awssdk:codegen") public enum StreamingImageStatusCode extends Enum<StreamingImageStatusCode>
The status code.
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static StreamingImageStatusCodefromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<StreamingImageStatusCode>knownValues()StringtoString()static StreamingImageStatusCodevalueOf(String name)Returns the enum constant of this type with the specified name.static StreamingImageStatusCode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STREAMING_IMAGE_CREATE_IN_PROGRESS
public static final StreamingImageStatusCode STREAMING_IMAGE_CREATE_IN_PROGRESS
-
STREAMING_IMAGE_READY
public static final StreamingImageStatusCode STREAMING_IMAGE_READY
-
STREAMING_IMAGE_DELETE_IN_PROGRESS
public static final StreamingImageStatusCode STREAMING_IMAGE_DELETE_IN_PROGRESS
-
STREAMING_IMAGE_DELETED
public static final StreamingImageStatusCode STREAMING_IMAGE_DELETED
-
STREAMING_IMAGE_UPDATE_IN_PROGRESS
public static final StreamingImageStatusCode STREAMING_IMAGE_UPDATE_IN_PROGRESS
-
INTERNAL_ERROR
public static final StreamingImageStatusCode INTERNAL_ERROR
-
ACCESS_DENIED
public static final StreamingImageStatusCode ACCESS_DENIED
-
UNKNOWN_TO_SDK_VERSION
public static final StreamingImageStatusCode UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static StreamingImageStatusCode[] 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 (StreamingImageStatusCode c : StreamingImageStatusCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StreamingImageStatusCode 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<StreamingImageStatusCode>
-
fromValue
public static StreamingImageStatusCode 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:
- StreamingImageStatusCode corresponding to the value
-
knownValues
public static Set<StreamingImageStatusCode> 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 knownStreamingImageStatusCodes
-
-