Class AbstractMapEntry<K,V>
java.lang.Object
org.apache.commons.collections4.keyvalue.AbstractKeyValue<K,V>
org.apache.commons.collections4.keyvalue.AbstractMapEntry<K,V>
- Type Parameters:
K- the type of keysV- the type of mapped values
- Direct Known Subclasses:
DefaultMapEntry,UnmodifiableMapEntry
Abstract Pair class to assist with creating correct
Map.Entry implementations.- Since:
- 3.0
-
Method Summary
Methods inherited from class org.apache.commons.collections4.keyvalue.AbstractKeyValue
getKey, getValue, toString
-
Method Details
-
setValue
Sets the value stored in thisMap.Entry.This
Map.Entryis not connected to a Map, so only the local data is changed. -
equals
Compares thisMap.Entrywith anotherMap.Entry.Implemented per API documentation of
Map.Entry.equals(Object) -
hashCode
public int hashCode()Gets a hashCode compatible with the equals method.Implemented per API documentation of
Map.Entry.hashCode()
-