Uses of Interface
org.apache.commons.collections4.KeyValue
Package
Description
Implements collection and map related key/value classes.
-
Uses of KeyValue in org.apache.commons.collections4.bidimap
Modifier and TypeClassDescriptionprotected static class
Inner class MapEntry. -
Uses of KeyValue in org.apache.commons.collections4.keyvalue
Modifier and TypeClassDescriptionclass
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
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
.final class
DefaultMapEntry<K,
V> class
TiedMapEntry<K,
V> AMap.Entry
tied to a map underneath.final class
UnmodifiableMapEntry<K,
V> AMap.Entry
that throws UnsupportedOperationException whensetValue
is called.ModifierConstructorDescriptionDefaultKeyValue
(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
Modifier and TypeClassDescriptionprotected static class
HashEntry used to store the data.protected static class
LinkEntry that stores the data.protected static class
A MapEntry implementation for the map.class
SingletonMap<K,
V> AMap
implementation that holds a single item and is fixed size.ModifierConstructorDescriptionSingletonMap
(KeyValue<K, V> keyValue) Constructor specifying the key and value as aKeyValue
.