public static enum WorkflowInstance.WorkflowInstanceStatus extends Enum<WorkflowInstance.WorkflowInstanceStatus>
| Enum Constant and Description |
|---|
created
Workflow instance has been created but the processing has not been started yet
|
executing
A workflow state method is executing
|
finished
Workflow instance has reached an end state
|
inProgress
Workflow instance processing has been started
|
manual
Workflow instance is waiting for manual action
|
| Modifier and Type | Method and Description |
|---|---|
static WorkflowInstance.WorkflowInstanceStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WorkflowInstance.WorkflowInstanceStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WorkflowInstance.WorkflowInstanceStatus created
public static final WorkflowInstance.WorkflowInstanceStatus inProgress
public static final WorkflowInstance.WorkflowInstanceStatus finished
public static final WorkflowInstance.WorkflowInstanceStatus manual
public static final WorkflowInstance.WorkflowInstanceStatus executing
public static WorkflowInstance.WorkflowInstanceStatus[] values()
for (WorkflowInstance.WorkflowInstanceStatus c : WorkflowInstance.WorkflowInstanceStatus.values()) System.out.println(c);
public static WorkflowInstance.WorkflowInstanceStatus 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 © 2014–2020 Nitor Creations. All rights reserved.