Uses of Class
de.odysseus.el.tree.impl.Scanner.Symbol
-
Packages that use Scanner.Symbol Package Description de.odysseus.el.tree.impl -
-
Uses of Scanner.Symbol in de.odysseus.el.tree.impl
Fields in de.odysseus.el.tree.impl declared as Scanner.Symbol Modifier and Type Field Description private Scanner.Symbol
Scanner.Token. symbol
Fields in de.odysseus.el.tree.impl with type parameters of type Scanner.Symbol Modifier and Type Field Description private static java.util.HashMap<Scanner.Symbol,Scanner.Token>
Scanner. FIXMAP
Methods in de.odysseus.el.tree.impl that return Scanner.Symbol Modifier and Type Method Description Scanner.Symbol
Scanner.Token. getSymbol()
static Scanner.Symbol
Scanner.Symbol. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Scanner.Symbol[]
Scanner.Symbol. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in de.odysseus.el.tree.impl with parameters of type Scanner.Symbol Modifier and Type Method Description protected Scanner.Token
Parser. consumeToken(Scanner.Symbol expected)
consume current token (get next token); throw exception if the current token doesn't match the expected symbol.protected void
Parser. fail(Scanner.Symbol expected)
throw exceptionprotected Scanner.Token
Scanner. fixed(Scanner.Symbol symbol)
protected Scanner.Token
Scanner. token(Scanner.Symbol symbol, java.lang.String value, int length)
Constructors in de.odysseus.el.tree.impl with parameters of type Scanner.Symbol Constructor Description Token(Scanner.Symbol symbol, java.lang.String image)
Token(Scanner.Symbol symbol, java.lang.String image, int length)
-