public static enum Flow.FlowState extends Enum<Flow.FlowState>
| Enum Constant and Description |
|---|
CANCELLED |
FAILED |
KILLED |
SUCCEEDED |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static Flow.FlowState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Flow.FlowState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Flow.FlowState UNKNOWN
public static final Flow.FlowState SUCCEEDED
public static final Flow.FlowState FAILED
public static final Flow.FlowState CANCELLED
public static final Flow.FlowState KILLED
public static Flow.FlowState[] values()
for (Flow.FlowState c : Flow.FlowState.values()) System.out.println(c);
public static Flow.FlowState 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 © 2021. All rights reserved.