protected static class HashTable.Entry extends Object implements Serializable
Modifier and Type | Field and Description |
---|---|
int |
hash
The hash code
|
Object |
key
The key
|
HashTable.Entry |
next
The next entry
|
Object |
value
The value
|
Constructor and Description |
---|
Entry(int hash,
Object key,
Object value,
HashTable.Entry next)
Creates a new entry
|
public int hash
public Object key
public Object value
public HashTable.Entry next
public Entry(int hash, Object key, Object value, HashTable.Entry next)
Copyright © 2000–2019 Apache Software Foundation. All rights reserved.