Uses of Interface
org.apache.commons.collections4.KeyValue
Packages that use KeyValue
Package
Description
Implements collection and map related key/value classes.
- 
Uses of KeyValue in org.apache.commons.collections4.bidimapClasses in org.apache.commons.collections4.bidimap that implement KeyValueModifier and TypeClassDescriptionprotected static classInner class MapEntry.
- 
Uses of KeyValue in org.apache.commons.collections4.keyvalueClasses in org.apache.commons.collections4.keyvalue that implement KeyValueModifier and TypeClassDescriptionclassAbstractKeyValue<K,V> Abstract pair class to assist with creatingKeyValueandMap.Entryimplementations.classAbstractMapEntry<K,V> Abstract Pair class to assist with creating correctMap.Entryimplementations.classProvides a base decorator that allows additional functionality to be added to aMap.Entry.classDefaultKeyValue<K,V> A mutableKeyValuepair that does not implementMap.Entry.final classDefaultMapEntry<K,V> classTiedMapEntry<K,V> AMap.Entrytied to a map underneath.final classUnmodifiableMapEntry<K,V> AMap.Entrythat throws UnsupportedOperationException whensetValueis called.Constructors in org.apache.commons.collections4.keyvalue with parameters of type KeyValueModifierConstructorDescriptionDefaultKeyValue(KeyValue<? extends K, ? extends V> pair) Constructs a new pair from the specifiedKeyValue.DefaultMapEntry(KeyValue<? extends K, ? extends V> pair) Constructs a new entry from the specifiedKeyValue.UnmodifiableMapEntry(KeyValue<? extends K, ? extends V> pair) Constructs a new entry from the specifiedKeyValue.
- 
Uses of KeyValue in org.apache.commons.collections4.mapClasses in org.apache.commons.collections4.map that implement KeyValueModifier and TypeClassDescriptionprotected static classHashEntry used to store the data.protected static classLinkEntry that stores the data.protected static classA MapEntry implementation for the map.classSingletonMap<K,V> AMapimplementation that holds a single item and is fixed size.Constructors in org.apache.commons.collections4.map with parameters of type KeyValueModifierConstructorDescriptionSingletonMap(KeyValue<K, V> keyValue) Constructor specifying the key and value as aKeyValue.