public class MapEntry<K,V>
extends java.lang.Object
implements java.util.Map.Entry<K,V>
Constructor and Description |
---|
MapEntry(K k,
V v)
Create a new map entry.
|
Modifier and Type | Method and Description |
---|---|
boolean |
equals(java.lang.Object o)
Test if equal.
|
K |
getKey()
Get the key.
|
V |
getValue()
Get the value.
|
int |
hashCode()
Get the hashcode.
|
V |
setValue(V value)
Set the value.
|