private static class LongRecordingStackHashMap.Entry
extends java.lang.Object
| Modifier and Type | Field and Description |
|---|---|
private int |
hash
Stores the hash value.
|
private long |
key
Stores the key.
|
private LongRecordingStackHashMap.Entry |
next
Stores the next entry.
|
private RecordingStack |
value
Stores the value.
|
| Constructor and Description |
|---|
Entry(int hash,
long key,
RecordingStack value,
LongRecordingStackHashMap.Entry next)
Creates new entry.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString()
Returns a textual representation of this instance.
|
private final long key
private RecordingStack value
private LongRecordingStackHashMap.Entry next
private final int hash
Entry(int hash,
long key,
RecordingStack value,
LongRecordingStackHashMap.Entry next)
hash - the hash valuekey - the keyvalue - the valuenext - the next entry