public class WeakHashNode<K,V>
extends java.lang.ref.WeakReference<K>
implements java.util.Map.Entry<K,V>
| Modifier and Type | Field and Description |
|---|---|
int |
hash |
WeakHashNode<K,V> |
next |
V |
value |
| Constructor and Description |
|---|
WeakHashNode(K key,
java.lang.ref.ReferenceQueue<K> q,
int hash) |
| Modifier and Type | Method and Description |
|---|---|
K |
getKey() |
V |
getValue() |
V |
setValue(V value) |
public WeakHashNode<K,V> next
public int hash
public V value