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
- All Implemented Interfaces:
 java.util.Map.Entry<K,V>,KeyValue<K,V>
- Direct Known Subclasses:
 DefaultMapEntry,UnmodifiableMapEntry
public abstract class AbstractMapEntry<K,V> extends AbstractKeyValue<K,V> implements java.util.Map.Entry<K,V>
Abstract Pair class to assist with creating correctMap.Entryimplementations.- Since:
 - 3.0
 
 
- 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)Compares thisMap.Entrywith anotherMap.Entry.inthashCode()Gets a hashCode compatible with the equals method.VsetValue(V value)Sets the value stored in thisMap.Entry.- 
Methods inherited from class org.apache.commons.collections4.keyvalue.AbstractKeyValue
getKey, getValue, toString 
 - 
 
 - 
 
- 
- 
Method Detail
- 
setValue
public V setValue(V value)
Sets the value stored in thisMap.Entry.This
Map.Entryis not connected to a Map, so only the local data is changed. 
- 
equals
public boolean equals(java.lang.Object obj)
Compares thisMap.Entrywith anotherMap.Entry.Implemented per API documentation of
Map.Entry.equals(Object) 
 - 
 
 -