Uses of Interface
org.apache.commons.collections.KeyValue
-
Packages that use KeyValue Package Description org.apache.commons.collections This package contains the interfaces and utilities shared across all the subpackages of this component.org.apache.commons.collections.bidimap org.apache.commons.collections.keyvalue This package contains implementations of collection and map related key/value classes.org.apache.commons.collections.map -
-
Uses of KeyValue in org.apache.commons.collections
Classes in org.apache.commons.collections that implement KeyValue Modifier and Type Class Description protected static class
BeanMap.MyMapEntry
Deprecated.Map entry used byBeanMap
.class
DefaultMapEntry
Deprecated.Use the version in the keyvalue subpackage.private static class
DoubleOrderedMap.Node
Deprecated.private class
ReferenceMap.Entry
Deprecated.private static class
SequencedHashMap.Entry
Deprecated.Map.Entry
that doubles as a node in the linked list of sequenced mappings.private static class
StaticBucketMap.Node
Deprecated.The Map.Entry for the StaticBucketMap. -
Uses of KeyValue in org.apache.commons.collections.bidimap
Classes in org.apache.commons.collections.bidimap that implement KeyValue Modifier and Type Class Description protected static class
AbstractDualBidiMap.MapEntry
Inner class MapEntry.(package private) static class
TreeBidiMap.Node
A node used to store the data. -
Uses of KeyValue in org.apache.commons.collections.keyvalue
Classes in org.apache.commons.collections.keyvalue that implement KeyValue Modifier and Type Class Description class
AbstractKeyValue
Abstract pair class to assist with creatingKeyValue
andMap.Entry
implementations.class
AbstractMapEntry
Abstract Pair class to assist with creating correctMap.Entry
implementations.class
AbstractMapEntryDecorator
Provides a base decorator that allows additional functionality to be added to aMap.Entry
.class
DefaultKeyValue
A mutableKeyValue
pair that does not implementMap.Entry
.class
DefaultMapEntry
A restricted implementation ofMap.Entry
that prevents theMap.Entry
contract from being broken.class
TiedMapEntry
AMap.Entry
tied to a map underneath.class
UnmodifiableMapEntry
AMap.Entry
that throws UnsupportedOperationException whensetValue
is called.Constructors in org.apache.commons.collections.keyvalue with parameters of type KeyValue Constructor Description DefaultKeyValue(KeyValue pair)
Constructs a new pair from the specifiedKeyValue
.DefaultMapEntry(KeyValue pair)
Constructs a new entry from the specifiedKeyValue
.UnmodifiableMapEntry(KeyValue pair)
Constructs a new entry from the specifiedKeyValue
. -
Uses of KeyValue in org.apache.commons.collections.map
Classes in org.apache.commons.collections.map that implement KeyValue Modifier and Type Class Description protected static class
AbstractHashedMap.HashEntry
HashEntry used to store the data.(package private) static class
AbstractInputCheckedMapDecorator.MapEntry
Implementation of a map entry that checks additions via setValue.protected static class
AbstractLinkedMap.LinkEntry
LinkEntry that stores the data.protected static class
AbstractReferenceMap.ReferenceEntry
A MapEntry implementation for the map.protected static class
IdentityMap.IdentityEntry
HashEntry(package private) static class
ListOrderedMap.ListOrderedMapEntry
class
SingletonMap
AMap
implementation that holds a single item and is fixed size.private static class
StaticBucketMap.Node
The Map.Entry for the StaticBucketMap.(package private) static class
UnmodifiableEntrySet.UnmodifiableEntry
Implementation of a map entry that is unmodifiable.Constructors in org.apache.commons.collections.map with parameters of type KeyValue Constructor Description SingletonMap(KeyValue keyValue)
Constructor specifying the key and value as aKeyValue
.
-