public static enum TokenizerData.EMatchType extends Enum<TokenizerData.EMatchType>
| Enum Constant and Description |
|---|
MORE |
SKIP |
SPECIAL_TOKEN |
TOKEN |
| Modifier and Type | Method and Description |
|---|---|
static TokenizerData.EMatchType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TokenizerData.EMatchType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TokenizerData.EMatchType SKIP
public static final TokenizerData.EMatchType SPECIAL_TOKEN
public static final TokenizerData.EMatchType MORE
public static final TokenizerData.EMatchType TOKEN
public static TokenizerData.EMatchType[] values()
for (TokenizerData.EMatchType c : TokenizerData.EMatchType.values()) System.out.println(c);
public static TokenizerData.EMatchType 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–2019 Philip Helger. All rights reserved.