abstract class AbstractMapEntry<K,V>
extends java.lang.Object
implements java.util.Map.Entry<K,V>
equals
, hashCode
, and toString
methods of Entry
.Constructor and Description |
---|
AbstractMapEntry() |
Modifier and Type | Method and Description |
---|---|
boolean |
equals(java.lang.Object object) |
abstract K |
getKey() |
abstract V |
getValue() |
int |
hashCode() |
V |
setValue(V value) |
java.lang.String |
toString()
Returns a string representation of the form
{key}={value} . |