public enum BjoernKeywords extends java.lang.Enum<BjoernKeywords>
| Enum Constant and Description |
|---|
BACKGROUND |
FEATURE |
GIVEN |
SCENARIO |
SCENARIOS |
STATEMENT |
THEN |
WHEN |
| Modifier and Type | Field and Description |
|---|---|
java.lang.String |
keyword |
| Modifier and Type | Method and Description |
|---|---|
static java.lang.String |
getKeywordsAsSingleString() |
static java.util.List<java.lang.String> |
getKeywordValues() |
java.lang.String |
toString() |
static BjoernKeywords |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BjoernKeywords[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BjoernKeywords GIVEN
public static final BjoernKeywords WHEN
public static final BjoernKeywords THEN
public static final BjoernKeywords BACKGROUND
public static final BjoernKeywords FEATURE
public static final BjoernKeywords SCENARIO
public static final BjoernKeywords SCENARIOS
public static final BjoernKeywords STATEMENT
public static BjoernKeywords[] values()
for (BjoernKeywords c : BjoernKeywords.values()) System.out.println(c);
public static BjoernKeywords 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 nullpublic static java.util.List<java.lang.String> getKeywordValues()
public static java.lang.String getKeywordsAsSingleString()
public java.lang.String toString()
toString in class java.lang.Enum<BjoernKeywords>