static class IntHashtable.Entry
extends java.lang.Object
Innerclass that acts as a datastructure to create a new entry in the table.
| Modifier and Type | Field and Description |
|---|---|
(package private) int |
hash |
(package private) int |
key |
(package private) IntHashtable.Entry |
next |
(package private) int |
value |
| Modifier | Constructor and Description |
|---|---|
protected |
IntHashtable.Entry(int hash,
int key,
int value,
IntHashtable.Entry next)
Create a new entry with the given values.
|
int hash
int key
int value
IntHashtable.Entry next
protected IntHashtable.Entry(int hash,
int key,
int value,
IntHashtable.Entry next)
Create a new entry with the given values.
hash - The code used to hash the int withkey - The key used to enter this in the tablevalue - The value for this keynext - A reference to the next entry in the table