Enum ImageSetWorkflowStatus
- java.lang.Object
-
- java.lang.Enum<ImageSetWorkflowStatus>
-
- software.amazon.awssdk.services.medicalimaging.model.ImageSetWorkflowStatus
-
- All Implemented Interfaces:
Serializable,Comparable<ImageSetWorkflowStatus>
@Generated("software.amazon.awssdk:codegen") public enum ImageSetWorkflowStatus extends Enum<ImageSetWorkflowStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COPIEDCOPY_FAILEDCOPYINGCOPYING_WITH_READ_ONLY_ACCESSCREATEDDELETEDDELETINGUNKNOWN_TO_SDK_VERSIONUPDATE_FAILEDUPDATEDUPDATING
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ImageSetWorkflowStatusfromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<ImageSetWorkflowStatus>knownValues()StringtoString()static ImageSetWorkflowStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static ImageSetWorkflowStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CREATED
public static final ImageSetWorkflowStatus CREATED
-
COPIED
public static final ImageSetWorkflowStatus COPIED
-
COPYING
public static final ImageSetWorkflowStatus COPYING
-
COPYING_WITH_READ_ONLY_ACCESS
public static final ImageSetWorkflowStatus COPYING_WITH_READ_ONLY_ACCESS
-
COPY_FAILED
public static final ImageSetWorkflowStatus COPY_FAILED
-
UPDATING
public static final ImageSetWorkflowStatus UPDATING
-
UPDATED
public static final ImageSetWorkflowStatus UPDATED
-
UPDATE_FAILED
public static final ImageSetWorkflowStatus UPDATE_FAILED
-
DELETING
public static final ImageSetWorkflowStatus DELETING
-
DELETED
public static final ImageSetWorkflowStatus DELETED
-
UNKNOWN_TO_SDK_VERSION
public static final ImageSetWorkflowStatus UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static ImageSetWorkflowStatus[] 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 (ImageSetWorkflowStatus c : ImageSetWorkflowStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ImageSetWorkflowStatus 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<ImageSetWorkflowStatus>
-
fromValue
public static ImageSetWorkflowStatus 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:
- ImageSetWorkflowStatus corresponding to the value
-
knownValues
public static Set<ImageSetWorkflowStatus> 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 knownImageSetWorkflowStatuss
-
-