Class ListOrderedMap.ListOrderedMapEntry<K,V>
- java.lang.Object
-
- org.apache.commons.collections4.keyvalue.AbstractKeyValue<K,V>
-
- org.apache.commons.collections4.keyvalue.AbstractMapEntry<K,V>
-
- org.apache.commons.collections4.map.ListOrderedMap.ListOrderedMapEntry<K,V>
-
- Enclosing class:
- ListOrderedMap<K,V>
static class ListOrderedMap.ListOrderedMapEntry<K,V> extends AbstractMapEntry<K,V>
-
-
Constructor Summary
Constructors Constructor Description ListOrderedMapEntry(ListOrderedMap<K,V> parent, K key)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description VgetValue()Gets the value from the pair.VsetValue(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, setKey, toString
-
-
-
-
Constructor Detail
-
ListOrderedMapEntry
ListOrderedMapEntry(ListOrderedMap<K,V> parent, K key)
-
-
Method Detail
-
getValue
public V getValue()
Description copied from class:AbstractKeyValueGets the value from the pair.
-
setValue
public V setValue(V value)
Description copied from class:AbstractMapEntrySets the value stored in thisMap.Entry.This
Map.Entryis not connected to a Map, so only the local data is changed.
-
-