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 TypeMethodDescriptionbooleanCompares 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
Compares the specified object to thisMap.Entryand returns if they are equal. To be equal, the object must be an instance ofMap.Entryand have the same key and value. -
getKey
-
getValue
-
hashCode
-
setValue
-