public enum FlowInstigationStrategyEnum extends Enum<FlowInstigationStrategyEnum>
JobSequence
.Enum Constant and Description |
---|
ASYNCHRONOUS
Asynchronous invocation of the
Job within a ThreadState . |
PARALLEL
Parallel invocation of the
Job . |
SEQUENTIAL
Sequential invocation of the
Job .. |
Modifier and Type | Method and Description |
---|---|
static FlowInstigationStrategyEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FlowInstigationStrategyEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FlowInstigationStrategyEnum ASYNCHRONOUS
Job
within a ThreadState
.public static final FlowInstigationStrategyEnum PARALLEL
Job
.public static final FlowInstigationStrategyEnum SEQUENTIAL
Job
..public static FlowInstigationStrategyEnum[] values()
for (FlowInstigationStrategyEnum c : FlowInstigationStrategyEnum.values()) System.out.println(c);
public static FlowInstigationStrategyEnum 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 © 2005–2016. All rights reserved.