Package com.adobe.aio.cloudmanager
Enum PipelineExecutionStepState.Status
- java.lang.Object
-
- java.lang.Enum<PipelineExecutionStepState.Status>
-
- com.adobe.aio.cloudmanager.PipelineExecutionStepState.Status
-
- All Implemented Interfaces:
Serializable
,Comparable<PipelineExecutionStepState.Status>
- Enclosing interface:
- PipelineExecutionStepState
public static enum PipelineExecutionStepState.Status extends Enum<PipelineExecutionStepState.Status>
Pipeline Execution Step status values- See Also:
- Cloud Manager Pipeline Model
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CANCELLED
ERROR
FAILED
FINISHED
NOT_STARTED
ROLLED_BACK
ROLLING_BACK
RUNNING
WAITING
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PipelineExecutionStepState.Status
valueOf(String name)
Returns the enum constant of this type with the specified name.static PipelineExecutionStepState.Status[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NOT_STARTED
public static final PipelineExecutionStepState.Status NOT_STARTED
-
RUNNING
public static final PipelineExecutionStepState.Status RUNNING
-
FINISHED
public static final PipelineExecutionStepState.Status FINISHED
-
ERROR
public static final PipelineExecutionStepState.Status ERROR
-
ROLLING_BACK
public static final PipelineExecutionStepState.Status ROLLING_BACK
-
ROLLED_BACK
public static final PipelineExecutionStepState.Status ROLLED_BACK
-
WAITING
public static final PipelineExecutionStepState.Status WAITING
-
CANCELLED
public static final PipelineExecutionStepState.Status CANCELLED
-
FAILED
public static final PipelineExecutionStepState.Status FAILED
-
-
Method Detail
-
values
public static PipelineExecutionStepState.Status[] 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 (PipelineExecutionStepState.Status c : PipelineExecutionStepState.Status.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PipelineExecutionStepState.Status 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
-
-