protected static final class

SymbolTable.Entry

extends Object
java.lang.Object
   ↳ org.apache.xerces.util.SymbolTable.Entry

Class Overview

This class is a symbol table entry. Each entry acts as a node in a linked list.

Summary

Fields
public char[] characters Symbol characters.
public SymbolTable.Entry next The next entry.
public String symbol Symbol.
Public Constructors
SymbolTable.Entry(String symbol, SymbolTable.Entry next)
Constructs a new entry from the specified symbol and next entry reference.
SymbolTable.Entry(char[] ch, int offset, int length, SymbolTable.Entry next)
Constructs a new entry from the specified symbol information and next entry reference.
[Expand]
Inherited Methods
From class java.lang.Object

Fields

public char[] characters

Symbol characters. This information is duplicated here for comparison performance.

public SymbolTable.Entry next

The next entry.

public String symbol

Symbol.

Public Constructors

public SymbolTable.Entry (String symbol, SymbolTable.Entry next)

Constructs a new entry from the specified symbol and next entry reference.

public SymbolTable.Entry (char[] ch, int offset, int length, SymbolTable.Entry next)

Constructs a new entry from the specified symbol information and next entry reference.