java.util
public
static
interface
java.util.Map.Entry<K, V>
java.util.Map.Entry<K, V> |
|
Map.Entry is a key/value mapping which is contained in a Map.
Summary
Details
Public Methods
public
boolean
equals(Object object)
Compares the specified object to this Map.Entry and answer if they
are equal. The object must be an instance of Map.Entry and have the
same key and value.
Parameters
object
| the object to compare with this object |
Returns
- true if the specified object is equal to this Map.Entry,
false otherwise
public
int
hashCode()
Returns an integer hash code for the receiver. Objects which are
equal answer the same value for this method.
public
V
setValue(V object)