public enum StepType extends Enum<StepType>
Enum Constant and Description |
---|
ACTION_AFTER
Action After
|
ACTION_BEFORE
Action Before
|
EXPECTED_RESULT_AFTER
Expected Result After
|
EXPECTED_RESULT_BEFORE
Expected Result Before
|
NUMBERED_FRAME_STEP
TCG_Step
|
POSTCONDITION_AFTER
PostCondition After
|
POSTCONDITION_BEFORE
PostCondition Before
|
PRECONDITION_AFTER
Precondition After
|
PRECONDITION_BEFORE
Precondition Before
|
Modifier and Type | Method and Description |
---|---|
static StepType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StepType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StepType PRECONDITION_BEFORE
public static final StepType PRECONDITION_AFTER
public static final StepType ACTION_BEFORE
public static final StepType ACTION_AFTER
public static final StepType POSTCONDITION_BEFORE
public static final StepType POSTCONDITION_AFTER
public static final StepType EXPECTED_RESULT_BEFORE
public static final StepType EXPECTED_RESULT_AFTER
public static final StepType NUMBERED_FRAME_STEP
public static StepType[] values()
for (StepType c : StepType.values()) System.out.println(c);
public static StepType 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 © 2016–2023 MicroNova AG. All rights reserved.