private class NaiveTxnHashMap.NaiveEntry<K,V>
extends java.lang.Object
implements java.util.Map.Entry<K,V>
Modifier and Type | Field and Description |
---|---|
(package private) int |
hash |
(package private) K |
key |
(package private) TxnRef<NaiveTxnHashMap.NaiveEntry<K,V>> |
next |
(package private) TxnRef<V> |
value |
Constructor and Description |
---|
NaiveEntry(int hash,
K key,
V value,
NaiveTxnHashMap.NaiveEntry<K,V> next) |
Modifier and Type | Method and Description |
---|---|
boolean |
equals(java.lang.Object o) |
K |
getKey() |
V |
getValue() |
int |
hashCode() |
V |
setValue(V newValue) |
java.lang.String |
toString() |
final K key
final int hash
final TxnRef<NaiveTxnHashMap.NaiveEntry<K,V>> next
NaiveEntry(int hash, K key, V value, NaiveTxnHashMap.NaiveEntry<K,V> next)