public static enum Token.TokenClass extends java.lang.Enum<Token.TokenClass>
The token classes.
Enum Constant and Description |
---|
ALL |
BOUNDARY |
NORMAL |
QUOTED |
WILDCARD |
Modifier and Type | Method and Description |
---|---|
static Token.TokenClass |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Token.TokenClass[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Token.TokenClass NORMAL
public static final Token.TokenClass ALL
public static final Token.TokenClass WILDCARD
public static final Token.TokenClass BOUNDARY
public static final Token.TokenClass QUOTED
public static Token.TokenClass[] values()
for (Token.TokenClass c : Token.TokenClass.values()) System.out.println(c);
public static Token.TokenClass 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