Interface Map.Entry<K,V>
- All Known Implementing Classes:
AbstractMap.SimpleEntry, AbstractMap.SimpleImmutableEntry
public static interface Map.Entry<K,V>
Map.Entry is a key/value mapping contained in a Map.-
Method Summary
Modifier and TypeMethodDescriptionbooleanequals(java.lang.Object object) Compares the specified object to thisMap.Entryand returns if they are equal.getKey()Returns the key.getValue()Returns the value.inthashCode()Returns an integer hash code for the receiver.Sets the value of this entry to the specified value, replacing any existing value.
-
Method Details
-
equals
boolean equals(java.lang.Object object) Compares the specified object to this
Map.Entryand returns if they are equal. To be equal, the object must be an instance ofMap.Entryand have the same key and value.Parameters
object: theObjectto compare with thisObject.
Returns
- Overrides:
equalsin classjava.lang.Object- Returns:
trueif the specifiedObjectis equal to thisMap.Entry,falseotherwise.See also
- #hashCode()
-
getKey
K getKey()Returns the key.
Returns
the key
-
getValue
V getValue()Returns the value.
Returns
the value
-
hashCode
int hashCode()Returns an integer hash code for the receiver.
Objectwhich are equal return the same value for this method.Returns
the receiver's hash code.
See also
- #equals(Object)
- Overrides:
hashCodein classjava.lang.Object
-
setValue
-