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 class
AbstractDualBidiMap.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 class
AbstractKeyValue<K,V>
Abstract pair class to assist with creatingKeyValue
andMap.Entry
implementations.class
AbstractMapEntry<K,V>
Abstract Pair class to assist with creating correctMap.Entry
implementations.class
AbstractMapEntryDecorator<K,V>
Provides a base decorator that allows additional functionality to be added to aMap.Entry
.class
DefaultKeyValue<K,V>
A mutableKeyValue
pair that does not implementMap.Entry
.class
DefaultMapEntry<K,V>
class
TiedMapEntry<K,V>
AMap.Entry
tied to a map underneath.class
UnmodifiableMapEntry<K,V>
AMap.Entry
that throws UnsupportedOperationException whensetValue
is 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 class
AbstractHashedMap.HashEntry<K,V>
HashEntry used to store the data.protected static class
AbstractLinkedMap.LinkEntry<K,V>
LinkEntry that stores the data.protected static class
AbstractReferenceMap.ReferenceEntry<K,V>
A MapEntry implementation for the map.class
SingletonMap<K,V>
AMap
implementation 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
.
-