| 枚举常量和说明 |
|---|
ABORT
-------------- Retry Flow ---------------------
|
CANCELLING |
EMPTY
init state of a flow
|
FAIL
-------------- Simple Flow --------------------
|
NOT_SUPPORTED
any task be not-supported, the flow will be not-supported
|
PENDING
any task be pending, maybe success in the future
|
SUCCESS
all the tasks in the path to an end be success
|
| 限定符和类型 | 方法和说明 |
|---|---|
static FlowState |
from(TaskState taskState) |
boolean |
isRunning() |
static FlowState |
valueOf(java.lang.String name)
返回带有指定名称的该类型的枚举常量。
|
static FlowState[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final FlowState NOT_SUPPORTED
public static final FlowState EMPTY
public static final FlowState PENDING
public static final FlowState SUCCESS
public static final FlowState FAIL
public static final FlowState ABORT
public static final FlowState CANCELLING
public static FlowState[] values()
for (FlowState c : FlowState.values()) System.out.println(c);
public static FlowState valueOf(java.lang.String name)
name - 要返回的枚举常量的名称。java.lang.IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量java.lang.NullPointerException - 如果参数为空值public boolean isRunning()