public enum StepStatus extends Enum<StepStatus>
| Modifier and Type | Method and Description |
|---|---|
static StepStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StepStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StepStatus PASS
public static final StepStatus FAIL
public static final StepStatus ERROR
public static final StepStatus INFO
public static final StepStatus DEBUG
public static StepStatus[] values()
for (StepStatus c : StepStatus.values()) System.out.println(c);
public static StepStatus 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 © 2021. All rights reserved.