public enum StageStatus extends java.lang.Enum<StageStatus>
| Enum Constant and Description |
|---|
COMPLETED
Stage completed successfully with all changes applied.
|
FAILED
Stage failed during execution.
|
NOT_STARTED
Stage was not started (due to prior failure).
|
SKIPPED
Stage was skipped (all changes already applied).
|
| Modifier and Type | Method and Description |
|---|---|
static StageStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StageStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StageStatus COMPLETED
public static final StageStatus FAILED
public static final StageStatus SKIPPED
public static final StageStatus NOT_STARTED
public static StageStatus[] values()
for (StageStatus c : StageStatus.values()) System.out.println(c);
public static StageStatus valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null