org.apache.xerces.util
Class SymbolHash.Entry

java.lang.Object
  |
  +--org.apache.xerces.util.SymbolHash.Entry
Enclosing class:
SymbolHash

protected static final class SymbolHash.Entry
extends java.lang.Object

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


Field Summary
 char[] characters
          key characters.
 java.lang.String key
          key is a name or QName
 SymbolHash.Entry next
          The next entry.
 java.lang.Object value
           
 
Constructor Summary
SymbolHash.Entry()
           
SymbolHash.Entry(java.lang.String key, java.lang.Object value, SymbolHash.Entry next)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

key

public java.lang.String key
key is a name or QName

value

public java.lang.Object value

characters

public char[] characters
key characters. This information is duplicated here for comparison performance.

next

public SymbolHash.Entry next
The next entry.
Constructor Detail

SymbolHash.Entry

public SymbolHash.Entry()

SymbolHash.Entry

public SymbolHash.Entry(java.lang.String key,
                        java.lang.Object value,
                        SymbolHash.Entry next)


Copyright © 1999-2001 Apache XML Project. All Rights Reserved.