public enum FlowType extends Enum<FlowType>
| Enum Constant and Description |
|---|
IDEMPOTENT |
NONE |
RECOVERABLE |
UNSEQUENCED |
| Modifier and Type | Method and Description |
|---|---|
static FlowType |
fromValue(String value) |
String |
toString() |
String |
value() |
static FlowType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FlowType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FlowType RECOVERABLE
public static final FlowType UNSEQUENCED
public static final FlowType IDEMPOTENT
public static final FlowType NONE
public static FlowType[] values()
for (FlowType c : FlowType.values()) System.out.println(c);
public static FlowType 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 nullpublic String value()
Copyright © 2019–2021 IG Group. All rights reserved.