Class SymbolTable.Entry
java.lang.Object
org.apache.sling.scripting.jsp.jasper.xmlparser.SymbolTable.Entry
- Enclosing class:
- SymbolTable
This class is a symbol table entry. Each entry acts as a node
in a linked list.
-
Field Summary
Modifier and TypeFieldDescriptionchar[]
Symbol characters.The next entry.Symbol. -
Constructor Summary
ConstructorDescriptionEntry
(char[] ch, int offset, int length, SymbolTable.Entry next) Constructs a new entry from the specified symbol information and next entry reference.Entry
(String symbol, SymbolTable.Entry next) Constructs a new entry from the specified symbol and next entry reference. -
Method Summary
-
Field Details
-
symbol
Symbol. -
characters
public char[] charactersSymbol characters. This information is duplicated here for comparison performance. -
next
The next entry.
-
-
Constructor Details
-
Entry
Constructs a new entry from the specified symbol and next entry reference. -
Entry
Constructs a new entry from the specified symbol information and next entry reference.
-