Uses of Interface
org.apache.commons.collections4.KeyValue
-
Packages that use KeyValue Package Description org.apache.commons.collections4.bidimap org.apache.commons.collections4.keyvalue This package contains implementations of collection and map related key/value classes.org.apache.commons.collections4.map -
-
Uses of KeyValue in org.apache.commons.collections4.bidimap
Classes in org.apache.commons.collections4.bidimap that implement KeyValue Modifier and Type Class Description protected static classAbstractDualBidiMap.MapEntry<K,V>Inner class MapEntry. -
Uses of KeyValue in org.apache.commons.collections4.keyvalue
Classes in org.apache.commons.collections4.keyvalue that implement KeyValue Modifier and Type Class Description classAbstractKeyValue<K,V>Abstract pair class to assist with creatingKeyValueandMap.Entryimplementations.classAbstractMapEntry<K,V>Abstract Pair class to assist with creating correctMap.Entryimplementations.classAbstractMapEntryDecorator<K,V>Provides a base decorator that allows additional functionality to be added to aMap.Entry.classDefaultKeyValue<K,V>A mutableKeyValuepair that does not implementMap.Entry.classDefaultMapEntry<K,V>A restricted implementation ofMap.Entrythat prevents theMap.Entrycontract from being broken.classTiedMapEntry<K,V>AMap.Entrytied to a map underneath.classUnmodifiableMapEntry<K,V>AMap.Entrythat throws UnsupportedOperationException whensetValueis called.Constructors in org.apache.commons.collections4.keyvalue with parameters of type KeyValue Constructor Description DefaultKeyValue(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.map
Classes in org.apache.commons.collections4.map that implement KeyValue Modifier and Type Class Description protected static classAbstractHashedMap.HashEntry<K,V>HashEntry used to store the data.protected static classAbstractLinkedMap.LinkEntry<K,V>LinkEntry that stores the data.protected static classAbstractReferenceMap.ReferenceEntry<K,V>A 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 KeyValue Constructor Description SingletonMap(KeyValue<K,V> keyValue)Constructor specifying the key and value as aKeyValue.
-