public abstract class AbstractMapEntry<K,V> extends AbstractKeyValue<K ,V> implements Map .Entry <K ,V>
Map.Entry implementations.
| Modifier | Constructor and Description |
|---|---|
protected |
AbstractMapEntry(K key, V value)
Constructs a new entry with the given key and given value.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(Object
Compares this
Map.Entry with another
Map.Entry.
|
int |
hashCode()
Gets a hashCode compatible with the equals method.
|
V |
setValue(V value)
Sets the value stored in this
Map.Entry.
|
getKey, getValue, setKey, toStringclone, finalize, getClass, notify, notifyAll, wait, wait, waitcomparingByKey, comparingByKey, comparingByValue, comparingByValue, getKey, getValuepublic V setValue(V value)
Map.Entry.
This Map.Entry is not connected to a Map, so only the local data is changed.
public boolean equals(Objectobj)
Map.Entry with another
Map.Entry.
Implemented per API documentation of Map