|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<StepType>
org.jbehave.core.steps.StepType
public enum StepType
Enum representing the step types
Enum Constant Summary | |
---|---|
AND
Represents repetition of previous step |
|
GIVEN
Represents a precondition to an event |
|
IGNORABLE
Represents an ignorable step |
|
THEN
Represents an outcome of an event |
|
WHEN
Represents an event |
Method Summary | |
---|---|
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. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final StepType GIVEN
public static final StepType WHEN
public static final StepType THEN
public static final StepType AND
public static final StepType IGNORABLE
Method Detail |
---|
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 name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |