|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.xalan.xsltc.runtime.Hashtable
public class Hashtable
The main hash-table implementation
Nested Class Summary | |
---|---|
(package private) static class |
Hashtable.HashtableEnumerator
A hashtable enumerator class. |
Field Summary | |
---|---|
private int |
count
|
private float |
loadFactor
|
private HashtableEntry[] |
table
|
private int |
threshold
|
Constructor Summary | |
---|---|
Hashtable()
Constructs a new, empty hashtable with a default capacity and load factor. |
|
Hashtable(int initialCapacity)
Constructs a new, empty hashtable with the specified initial capacity and default load factor. |
|
Hashtable(int initialCapacity,
float loadFactor)
Constructs a new, empty hashtable with the specified initial capacity and the specified load factor. |
Method Summary | |
---|---|
void |
clear()
Clears this hashtable so that it contains no keys. |
boolean |
contains(java.lang.Object value)
Tests if some key maps into the specified value in this hashtable. |
boolean |
containsKey(java.lang.Object key)
Tests if the specified object is a key in this hashtable. |
java.util.Enumeration |
elements()
Returns an enumeration of the values in this hashtable. |
java.lang.Object |
get(java.lang.Object key)
Returns the value to which the specified key is mapped in this hashtable. |
boolean |
isEmpty()
Tests if this hashtable maps no keys to values. |
java.util.Enumeration |
keys()
Returns an enumeration of the keys in this hashtable. |
java.lang.Object |
put(java.lang.Object key,
java.lang.Object value)
Maps the specified key to the specified
value in this hashtable. |
protected void |
rehash()
Rehashes the contents of the hashtable into a hashtable with a larger capacity. |
java.lang.Object |
remove(java.lang.Object key)
Removes the key (and its corresponding value) from this hashtable. |
int |
size()
Returns the number of keys in this hashtable. |
java.lang.String |
toString()
Returns a rather long string representation of this hashtable. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
private transient HashtableEntry[] table
private transient int count
private int threshold
private float loadFactor
Constructor Detail |
---|
public Hashtable(int initialCapacity, float loadFactor)
public Hashtable(int initialCapacity)
public Hashtable()
Method Detail |
---|
public int size()
public boolean isEmpty()
public java.util.Enumeration keys()
public java.util.Enumeration elements()
public boolean contains(java.lang.Object value)
containsKey
method.
public boolean containsKey(java.lang.Object key)
public java.lang.Object get(java.lang.Object key)
protected void rehash()
public java.lang.Object put(java.lang.Object key, java.lang.Object value)
key
to the specified
value
in this hashtable. Neither the key nor the
value can be null
.
The value can be retrieved by calling the get
method
with a key that is equal to the original key.
public java.lang.Object remove(java.lang.Object key)
public void clear()
public java.lang.String toString()
toString
in class java.lang.Object
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |