Class AbstractMultiValuedMap.MultiValuedMapEntry
- java.lang.Object
-
- org.apache.commons.collections4.keyvalue.AbstractKeyValue<K,V>
-
- org.apache.commons.collections4.keyvalue.AbstractMapEntry<K,V>
-
- org.apache.commons.collections4.multimap.AbstractMultiValuedMap.MultiValuedMapEntry
-
- All Implemented Interfaces:
java.util.Map.Entry<K,V>
,KeyValue<K,V>
- Enclosing class:
- AbstractMultiValuedMap<K,V>
private class AbstractMultiValuedMap.MultiValuedMapEntry extends AbstractMapEntry<K,V>
Inner class for MultiValuedMap Entries.
-
-
Constructor Summary
Constructors Constructor Description MultiValuedMapEntry(K key, V value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description V
setValue(V value)
Sets the value stored in thisMap.Entry
.-
Methods inherited from class org.apache.commons.collections4.keyvalue.AbstractMapEntry
equals, hashCode
-
Methods inherited from class org.apache.commons.collections4.keyvalue.AbstractKeyValue
getKey, getValue, setKey, toString
-
-
-
-
Method Detail
-
setValue
public V setValue(V value)
Description copied from class:AbstractMapEntry
Sets the value stored in thisMap.Entry
.This
Map.Entry
is not connected to a Map, so only the local data is changed.
-
-