Uses of Interface
org.apache.commons.collections.IterableMap
-
Packages that use IterableMap 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.map -
-
Uses of IterableMap in org.apache.commons.collections
Subinterfaces of IterableMap in org.apache.commons.collections Modifier and Type Interface Description interface
BidiMap
Defines a map that allows bidirectional lookup between key and values.interface
OrderedBidiMap
Defines a map that allows bidirectional lookup between key and values and retains and provides access to an ordering.interface
OrderedMap
Defines a map that maintains order and allows both forward and backward iteration through that order.interface
SortedBidiMap
Defines a map that allows bidirectional lookup between key and values and retains both keys and values in sorted order. -
Uses of IterableMap in org.apache.commons.collections.bidimap
Classes in org.apache.commons.collections.bidimap that implement IterableMap Modifier and Type Class Description class
AbstractBidiMapDecorator
Provides a base decorator that enables additional functionality to be added to a BidiMap via decoration.class
AbstractDualBidiMap
AbstractBidiMap
implemented using two maps.class
AbstractOrderedBidiMapDecorator
Provides a base decorator that enables additional functionality to be added to an OrderedBidiMap via decoration.class
AbstractSortedBidiMapDecorator
Provides a base decorator that enables additional functionality to be added to a SortedBidiMap via decoration.class
DualHashBidiMap
Implementation ofBidiMap
that uses twoHashMap
instances.class
DualTreeBidiMap
Implementation ofBidiMap
that uses twoTreeMap
instances.class
TreeBidiMap
Red-Black tree-based implementation of BidiMap where all objects added implement theComparable
interface.class
UnmodifiableBidiMap
Decorates anotherBidiMap
to ensure it can't be altered.class
UnmodifiableOrderedBidiMap
Decorates anotherOrderedBidiMap
to ensure it can't be altered.class
UnmodifiableSortedBidiMap
Decorates anotherSortedBidiMap
to ensure it can't be altered. -
Uses of IterableMap in org.apache.commons.collections.map
Classes in org.apache.commons.collections.map that implement IterableMap Modifier and Type Class Description class
AbstractHashedMap
An abstract implementation of a hash-based map which provides numerous points for subclasses to override.class
AbstractLinkedMap
An abstract implementation of a hash-based map that links entries to create an ordered map and which provides numerous points for subclasses to override.class
AbstractOrderedMapDecorator
Provides a base decorator that enables additional functionality to be added to an OrderedMap via decoration.class
AbstractReferenceMap
An abstract implementation of a hash-based map that allows the entries to be removed by the garbage collector.class
CaseInsensitiveMap
A case-insensitiveMap
.class
Flat3Map
AMap
implementation that stores data in simple fields until the size is greater than 3.class
HashedMap
AMap
implementation that is a general purpose alternative toHashMap
.class
IdentityMap
AMap
implementation that matches keys and values based on==
notequals()
.class
LinkedMap
AMap
implementation that maintains the order of the entries.class
ListOrderedMap
Decorates aMap
to ensure that the order of addition is retained using aList
to maintain order.class
LRUMap
AMap
implementation with a fixed maximum size which removes the least recently used entry if an entry is added when full.class
MultiKeyMap
AMap
implementation that uses multiple keys to map the value.class
ReferenceIdentityMap
AMap
implementation that allows mappings to be removed by the garbage collector and matches keys and values based on==
notequals()
.class
ReferenceMap
AMap
implementation that allows mappings to be removed by the garbage collector.class
SingletonMap
AMap
implementation that holds a single item and is fixed size.class
UnmodifiableMap
Decorates anotherMap
to ensure it can't be altered.class
UnmodifiableOrderedMap
Decorates anotherOrderedMap
to ensure it can't be altered.
-