public enum StepCompletionStatus extends Enum<StepCompletionStatus>
| Modifier and Type | Method and Description |
|---|---|
static StepCompletionStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StepCompletionStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StepCompletionStatus COMPLETED
public static final StepCompletionStatus SKIPPED
public static final StepCompletionStatus FAILED
public static StepCompletionStatus[] values()
for (StepCompletionStatus c : StepCompletionStatus.values()) System.out.println(c);
public static StepCompletionStatus 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 © 2011-2024 White Source. All Rights Reserved.