public static enum FlowRunner.Decision extends Enum<FlowRunner.Decision>
Enum Constant and Description |
---|
ABORT
Aborts the execution of the whole release.
|
CONTINUE
Allows to continue to the next task.
|
SKIP
Skips the current task and goes to the next one.
|
Modifier and Type | Method and Description |
---|---|
static FlowRunner.Decision |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FlowRunner.Decision[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FlowRunner.Decision CONTINUE
public static final FlowRunner.Decision SKIP
public static final FlowRunner.Decision ABORT
public static FlowRunner.Decision[] values()
for (FlowRunner.Decision c : FlowRunner.Decision.values()) System.out.println(c);
public static FlowRunner.Decision 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 © 2020 Pivotal Software, Inc.. All rights reserved.