protected static class HashTable.Entry
extends java.lang.Object
implements java.io.Serializable
Modifier and Type | Field and Description |
---|---|
int |
hash
The hash code
|
java.lang.Object |
key
The key
|
HashTable.Entry |
next
The next entry
|
java.lang.Object |
value
The value
|
Constructor and Description |
---|
Entry(int hash,
java.lang.Object key,
java.lang.Object value,
HashTable.Entry next)
Creates a new entry
|
public int hash
public java.lang.Object key
public java.lang.Object value
public HashTable.Entry next
public Entry(int hash, java.lang.Object key, java.lang.Object value, HashTable.Entry next)
Copyright ? 2009 Apache Software Foundation. All Rights Reserved.