public final class MapEntry<K,V> extends java.lang.Object implements java.util.Map.Entry<K,V>
in JDK 1.6.
Modifier and Type | Method and Description |
---|---|
boolean |
equals(java.lang.Object b)
Comparison with any other object.
|
K |
getKey()
Get the key.
|
V |
getValue()
Get the value.
|
int |
hashCode()
Hash code for this MapEntry.
|
V |
setValue(V value)
Set the value.
|