public enum WorkflowExecutionStatusEnum extends java.lang.Enum<WorkflowExecutionStatusEnum>
Enum Constant and Description |
---|
Aborted |
Failure |
Queued |
Running |
Success |
Modifier and Type | Method and Description |
---|---|
static WorkflowExecutionStatusEnum |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static WorkflowExecutionStatusEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WorkflowExecutionStatusEnum Queued
public static final WorkflowExecutionStatusEnum Running
public static final WorkflowExecutionStatusEnum Success
public static final WorkflowExecutionStatusEnum Aborted
public static final WorkflowExecutionStatusEnum Failure
public static WorkflowExecutionStatusEnum[] values()
for (WorkflowExecutionStatusEnum c : WorkflowExecutionStatusEnum.values()) System.out.println(c);
public static WorkflowExecutionStatusEnum 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