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