Enum MigrationWorkflowStatusEnum
- java.lang.Object
-
- java.lang.Enum<MigrationWorkflowStatusEnum>
-
- software.amazon.awssdk.services.migrationhuborchestrator.model.MigrationWorkflowStatusEnum
-
- All Implemented Interfaces:
Serializable,Comparable<MigrationWorkflowStatusEnum>
@Generated("software.amazon.awssdk:codegen") public enum MigrationWorkflowStatusEnum extends Enum<MigrationWorkflowStatusEnum>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COMPLETEDCREATINGCREATION_FAILEDDELETEDDELETINGDELETION_FAILEDIN_PROGRESSNOT_STARTEDPAUSEDPAUSINGPAUSING_FAILEDSTARTINGUNKNOWN_TO_SDK_VERSIONUSER_ATTENTION_REQUIREDWORKFLOW_FAILED
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static MigrationWorkflowStatusEnumfromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<MigrationWorkflowStatusEnum>knownValues()StringtoString()static MigrationWorkflowStatusEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static MigrationWorkflowStatusEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CREATING
public static final MigrationWorkflowStatusEnum CREATING
-
NOT_STARTED
public static final MigrationWorkflowStatusEnum NOT_STARTED
-
CREATION_FAILED
public static final MigrationWorkflowStatusEnum CREATION_FAILED
-
STARTING
public static final MigrationWorkflowStatusEnum STARTING
-
IN_PROGRESS
public static final MigrationWorkflowStatusEnum IN_PROGRESS
-
WORKFLOW_FAILED
public static final MigrationWorkflowStatusEnum WORKFLOW_FAILED
-
PAUSED
public static final MigrationWorkflowStatusEnum PAUSED
-
PAUSING
public static final MigrationWorkflowStatusEnum PAUSING
-
PAUSING_FAILED
public static final MigrationWorkflowStatusEnum PAUSING_FAILED
-
USER_ATTENTION_REQUIRED
public static final MigrationWorkflowStatusEnum USER_ATTENTION_REQUIRED
-
DELETING
public static final MigrationWorkflowStatusEnum DELETING
-
DELETION_FAILED
public static final MigrationWorkflowStatusEnum DELETION_FAILED
-
DELETED
public static final MigrationWorkflowStatusEnum DELETED
-
COMPLETED
public static final MigrationWorkflowStatusEnum COMPLETED
-
UNKNOWN_TO_SDK_VERSION
public static final MigrationWorkflowStatusEnum UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static MigrationWorkflowStatusEnum[] 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 (MigrationWorkflowStatusEnum c : MigrationWorkflowStatusEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MigrationWorkflowStatusEnum 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<MigrationWorkflowStatusEnum>
-
fromValue
public static MigrationWorkflowStatusEnum 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:
- MigrationWorkflowStatusEnum corresponding to the value
-
knownValues
public static Set<MigrationWorkflowStatusEnum> 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 knownMigrationWorkflowStatusEnums
-
-