K
- The type of key stored by the entry.V
- The type of value stored by the entry.public static interface Maps.BaseEntry<K,V>
extends java.util.Map.Entry<K,V>
Map.Entry
interface required by
Maps.AbstractHashMap
for its entries.Maps.AbstractHashMap
Modifier and Type | Method and Description |
---|---|
Maps.BaseEntry<K,V> |
getNext()
Gets the next entry in the containing hash chain of the containing map.
|
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.
|
Maps.BaseEntry<K,V> getNext()
void setNext(Maps.BaseEntry<K,V> next)
int keyHashCode()
boolean isMutable()
Map.Entry.setValue(V)
is supported.