public static enum Tokenizer.TokenType extends java.lang.Enum<Tokenizer.TokenType>
Enum Constant and Description |
---|
APOSTROPHE |
CONDITION_START |
CONTEXT_SWITCH_START |
END |
EOF |
PIPE |
TEXT |
VARIABLE_START |
Modifier and Type | Method and Description |
---|---|
static Tokenizer.TokenType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Tokenizer.TokenType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Tokenizer.TokenType CONDITION_START
public static final Tokenizer.TokenType VARIABLE_START
public static final Tokenizer.TokenType CONTEXT_SWITCH_START
public static final Tokenizer.TokenType END
public static final Tokenizer.TokenType PIPE
public static final Tokenizer.TokenType APOSTROPHE
public static final Tokenizer.TokenType TEXT
public static final Tokenizer.TokenType EOF
public static Tokenizer.TokenType[] values()
for (Tokenizer.TokenType c : Tokenizer.TokenType.values()) System.out.println(c);
public static Tokenizer.TokenType 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