public static enum Parser.TokenType extends Enum<Parser.TokenType>
Enum Constant and Description |
---|
BackgroundLine |
Comment |
DocStringSeparator |
Empty |
EOF |
ExamplesLine |
FeatureLine |
Language |
None |
Other |
ScenarioLine |
ScenarioOutlineLine |
StepLine |
TableRow |
TagLine |
Modifier and Type | Method and Description |
---|---|
static Parser.TokenType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Parser.TokenType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Parser.TokenType None
public static final Parser.TokenType EOF
public static final Parser.TokenType Empty
public static final Parser.TokenType Comment
public static final Parser.TokenType TagLine
public static final Parser.TokenType FeatureLine
public static final Parser.TokenType BackgroundLine
public static final Parser.TokenType ScenarioLine
public static final Parser.TokenType ScenarioOutlineLine
public static final Parser.TokenType ExamplesLine
public static final Parser.TokenType StepLine
public static final Parser.TokenType DocStringSeparator
public static final Parser.TokenType TableRow
public static final Parser.TokenType Language
public static final Parser.TokenType Other
public static Parser.TokenType[] values()
for (Parser.TokenType c : Parser.TokenType.values()) System.out.println(c);
public static Parser.TokenType 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 © 2017. All Rights Reserved.