public enum WorkflowInstanceFacadeStatus extends Enum<WorkflowInstanceFacadeStatus>
WorkflowInstanceState.getStatus(). The given statuses summarize the internal statuses to
hide internal details and give an easier meaning.| Enum Constant and Description |
|---|
ABORTED
The workflow instance is in a final state.
|
ACTIVE
The workflow instance is active and therefore subject to execution.
|
ERROR
The workflow instance is in an error status.
|
EXECUTED
The workflow instance is in a final state.
|
SUSPENDED
The workflow instance execution is suspended.
|
| Modifier and Type | Method and Description |
|---|---|
static WorkflowInstanceFacadeStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WorkflowInstanceFacadeStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WorkflowInstanceFacadeStatus ACTIVE
public static final WorkflowInstanceFacadeStatus ERROR
public static final WorkflowInstanceFacadeStatus SUSPENDED
public static final WorkflowInstanceFacadeStatus ABORTED
public static final WorkflowInstanceFacadeStatus EXECUTED
public static WorkflowInstanceFacadeStatus[] values()
for (WorkflowInstanceFacadeStatus c : WorkflowInstanceFacadeStatus.values()) System.out.println(c);
public static WorkflowInstanceFacadeStatus 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 © 2017. All rights reserved.