| Constructor Summary | ||
| AbstractMap.SimpleImmutableEntry(Map.Entry<? extends K,? extends V> entry) Creates an entry representing the same mapping as the
specified entry. |
||
| AbstractMap.SimpleImmutableEntry(K key, V value) Creates an entry representing a mapping from the specified
key to the specified value. |
| Method Summary | ||
boolean |
equals(Object o) Compares the specified object with this entry for equality. |
|
| getKey() Returns the key corresponding to this entry. |
||
| getValue() Returns the value corresponding to this entry. |
||
int |
hashCode() Returns the hash code value for this map entry. |
|
| setValue(V value) Replaces the value corresponding to this entry with the specified
value (optional operation). |
||
| toString() Returns a String representation of this map entry. |
||
| Methods inherited from class java.lang.Object |
| clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
(e1.getKey()==null ?
e2.getKey()==null :
e1.getKey().equals(e2.getKey()))
&&
(e1.getValue()==null ?
e2.getValue()==null :
e1.getValue().equals(e2.getValue()))
This ensures that the equals method works properly across
different implementations of the Map.Entry interface.(e.getKey()==null ? 0 : e.getKey().hashCode()) ^ (e.getValue()==null ? 0 : e.getValue().hashCode())This ensures that e1.equals(e2) implies that e1.hashCode()==e2.hashCode() for any two Entries e1 and e2, as required by the general contract of Object.hashCode().