public enum WorkflowRunStatus extends Enum<WorkflowRunStatus>
Enum Constant and Description |
---|
cancelled
The workflow run was cancelled from the running state (i.e., did not complete/fail since submitted_cancel was set.
|
completed
The workflow run has completed successfully.
|
failed
The workflow run has completed unsuccessfully.
|
pending
The workflow run has been launched on a workflow engine; status in the engine has not yet been propagated.
|
running
The workflow run is being executed on a workflow engine.
|
submitted
The workflow run exists in seqware but has not yet been launched on a workflow engine
|
submitted_cancel
The workflow run is scheduled for cancellation.
|
submitted_retry
The workflow run that had been cancelled or failed is now scheduled to be retried
|
Modifier and Type | Method and Description |
---|---|
static WorkflowRunStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WorkflowRunStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WorkflowRunStatus submitted
public static final WorkflowRunStatus pending
public static final WorkflowRunStatus running
public static final WorkflowRunStatus failed
public static final WorkflowRunStatus completed
public static final WorkflowRunStatus submitted_cancel
public static final WorkflowRunStatus cancelled
public static final WorkflowRunStatus submitted_retry
public static WorkflowRunStatus[] values()
for (WorkflowRunStatus c : WorkflowRunStatus.values()) System.out.println(c);
public static WorkflowRunStatus 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 © 2015 SeqWare. All rights reserved.