public static enum FuzzyParser.TokTyp extends Enum<FuzzyParser.TokTyp>
| Enum Constant and Description |
|---|
andTok |
closeBracket |
openBracket |
orTok |
text |
| Modifier and Type | Method and Description |
|---|---|
static FuzzyParser.TokTyp |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FuzzyParser.TokTyp[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FuzzyParser.TokTyp openBracket
public static final FuzzyParser.TokTyp closeBracket
public static final FuzzyParser.TokTyp andTok
public static final FuzzyParser.TokTyp orTok
public static final FuzzyParser.TokTyp text
public static FuzzyParser.TokTyp[] values()
for (FuzzyParser.TokTyp c : FuzzyParser.TokTyp.values()) System.out.println(c);
public static FuzzyParser.TokTyp 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. All rights reserved.