public static enum StepResult.Type extends Enum<StepResult.Type>
Enum Constant and Description |
---|
COMMENT |
FAILED |
IGNORABLE |
NOT_PERFORMED |
PENDING |
SILENT |
SKIPPED |
SUCCESSFUL |
Modifier and Type | Method and Description |
---|---|
static StepResult.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StepResult.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StepResult.Type FAILED
public static final StepResult.Type NOT_PERFORMED
public static final StepResult.Type PENDING
public static final StepResult.Type SUCCESSFUL
public static final StepResult.Type SILENT
public static final StepResult.Type IGNORABLE
public static final StepResult.Type COMMENT
public static final StepResult.Type SKIPPED
public static StepResult.Type[] values()
for (StepResult.Type c : StepResult.Type.values()) System.out.println(c);
public static StepResult.Type 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 © 2003–2016. All rights reserved.