Package org.apache.xerces.util
Class SymbolTable.Entry
java.lang.Object
org.apache.xerces.util.SymbolTable.Entry
- Enclosing class:
SymbolTable
This class is a symbol table entry. Each entry acts as a node
in a linked list.
-
Field Summary
FieldsModifier and TypeFieldDescriptionfinal char[]
Symbol characters.The next entry.final String
Symbol. -
Constructor Summary
ConstructorsConstructorDescriptionEntry
(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 final 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.
-