@StableMinor(version="12.3", sinceVersion="7.1") public enum StepOutcomeStatus extends Enum<StepOutcomeStatus>
outcome
of a step.Enum Constant and Description |
---|
FAILURE
Indicates that an error occurred when executing the step.
|
IGNORED
Indicates the step was ignored.
|
SUCCESS
Indicates the step was successfully executed.
|
Modifier and Type | Method and Description |
---|---|
static StepOutcomeStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StepOutcomeStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StepOutcomeStatus SUCCESS
public static final StepOutcomeStatus FAILURE
public static final StepOutcomeStatus IGNORED
public static StepOutcomeStatus[] values()
for (StepOutcomeStatus c : StepOutcomeStatus.values()) System.out.println(c);
public static StepOutcomeStatus 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 nullLumisXP 12.3.0.200408 - Copyright © 2006–2020 Lumis EIP Tecnologia da Informação LTDA. All Rights Reserved.