public enum StepCompletionStatus extends java.lang.Enum<StepCompletionStatus>
| Modifier and Type | Method and Description |
|---|---|
static StepCompletionStatus |
valueOf(java.lang.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(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2011-2025 White Source. All Rights Reserved.