K
- The type of key stored by the entry.V
- The type of value stored by the entry.public static class Maps.StrongEntry<K,V> extends java.lang.Object implements Maps.BaseEntry<K,V>
Maps.BaseEntry
implementation.Maps.StrongHashMap
Modifier | Constructor and Description |
---|---|
protected |
Maps.StrongEntry(int hash,
K key,
V value,
Maps.BaseEntry<K,V> next) |
Modifier and Type | Method and Description |
---|---|
boolean |
equals(java.lang.Object o) |
K |
getKey() |
Maps.BaseEntry<K,V> |
getNext()
Gets the next entry in the containing hash chain of the containing map.
|
V |
getValue() |
int |
hashCode() |
boolean |
isMutable()
Gets whether this entry is mutable, in particular whether
Map.Entry.setValue(V)
is supported. |
int |
keyHashCode()
Gets the hash code of the key in this entry.
|
void |
setNext(Maps.BaseEntry<K,V> next)
Sets the next entry in the containing hash chain of the containing map.
|
V |
setValue(V newValue) |
java.lang.String |
toString() |
protected Maps.StrongEntry(int hash, K key, V value, Maps.BaseEntry<K,V> next)
public Maps.BaseEntry<K,V> getNext()
Maps.BaseEntry
getNext
in interface Maps.BaseEntry<K,V>
public void setNext(Maps.BaseEntry<K,V> next)
Maps.BaseEntry
setNext
in interface Maps.BaseEntry<K,V>
public int keyHashCode()
Maps.BaseEntry
keyHashCode
in interface Maps.BaseEntry<K,V>
public boolean isMutable()
Maps.BaseEntry
Map.Entry.setValue(V)
is supported.isMutable
in interface Maps.BaseEntry<K,V>
public boolean equals(java.lang.Object o)
public int hashCode()
public java.lang.String toString()
toString
in class java.lang.Object