public enum GenericStatus extends Enum<GenericStatus>
FlowChunk in increasing priority order| Enum Constant and Description |
|---|
ABORTED
Aborted while running, no way to determine final outcome
Result.ABORTED |
FAILURE
Completed and explicitly failed, i.e.
|
IN_PROGRESS
Not complete: still executing, waiting for a result
|
NOT_EXECUTED
We resumed from checkpoint or
Result.NOT_BUILT status - nothing ran in the chunk. |
PAUSED_PENDING_INPUT
Not complete: we are waiting for user input to continue (special case of IN_PROGRESS)
|
SUCCESS
Completed & successful, ex
Result.SUCCESS |
UNSTABLE
Completed with recoverable failures, such as noncritical tests, ex
Result.UNSTABLE |
| Modifier and Type | Method and Description |
|---|---|
static GenericStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GenericStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GenericStatus NOT_EXECUTED
Result.NOT_BUILT status - nothing ran in the chunk.public static final GenericStatus SUCCESS
Result.SUCCESSpublic static final GenericStatus UNSTABLE
Result.UNSTABLEpublic static final GenericStatus IN_PROGRESS
public static final GenericStatus FAILURE
Result.FAILUREpublic static final GenericStatus ABORTED
Result.ABORTEDpublic static final GenericStatus PAUSED_PENDING_INPUT
public static GenericStatus[] values()
for (GenericStatus c : GenericStatus.values()) System.out.println(c);
public static GenericStatus valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2016. All rights reserved.