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 interfaceBidiMapDefines a map that allows bidirectional lookup between key and values.interfaceOrderedBidiMapDefines a map that allows bidirectional lookup between key and values and retains and provides access to an ordering.interfaceOrderedMapDefines a map that maintains order and allows both forward and backward iteration through that order.interfaceSortedBidiMapDefines 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 classAbstractBidiMapDecoratorProvides a base decorator that enables additional functionality to be added to a BidiMap via decoration.classAbstractDualBidiMapAbstractBidiMapimplemented using two maps.classAbstractOrderedBidiMapDecoratorProvides a base decorator that enables additional functionality to be added to an OrderedBidiMap via decoration.classAbstractSortedBidiMapDecoratorProvides a base decorator that enables additional functionality to be added to a SortedBidiMap via decoration.classDualHashBidiMapImplementation ofBidiMapthat uses twoHashMapinstances.classDualTreeBidiMapImplementation ofBidiMapthat uses twoTreeMapinstances.classTreeBidiMapRed-Black tree-based implementation of BidiMap where all objects added implement theComparableinterface.(package private) static classTreeBidiMap.InverseA node used to store the data.classUnmodifiableBidiMapDecorates anotherBidiMapto ensure it can't be altered.classUnmodifiableOrderedBidiMapDecorates anotherOrderedBidiMapto ensure it can't be altered.classUnmodifiableSortedBidiMapDecorates anotherSortedBidiMapto 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 classAbstractHashedMapAn abstract implementation of a hash-based map which provides numerous points for subclasses to override.classAbstractLinkedMapAn abstract implementation of a hash-based map that links entries to create an ordered map and which provides numerous points for subclasses to override.classAbstractOrderedMapDecoratorProvides a base decorator that enables additional functionality to be added to an OrderedMap via decoration.classAbstractReferenceMapAn abstract implementation of a hash-based map that allows the entries to be removed by the garbage collector.classCaseInsensitiveMapA case-insensitiveMap.classFlat3MapAMapimplementation that stores data in simple fields until the size is greater than 3.classHashedMapAMapimplementation that is a general purpose alternative toHashMap.classIdentityMapAMapimplementation that matches keys and values based on==notequals().classLinkedMapAMapimplementation that maintains the order of the entries.classListOrderedMapDecorates aMapto ensure that the order of addition is retained using aListto maintain order.classLRUMapAMapimplementation with a fixed maximum size which removes the least recently used entry if an entry is added when full.classMultiKeyMapAMapimplementation that uses multiple keys to map the value.classReferenceIdentityMapAMapimplementation that allows mappings to be removed by the garbage collector and matches keys and values based on==notequals().classReferenceMapAMapimplementation that allows mappings to be removed by the garbage collector.classSingletonMapAMapimplementation that holds a single item and is fixed size.classUnmodifiableMapDecorates anotherMapto ensure it can't be altered.classUnmodifiableOrderedMapDecorates anotherOrderedMapto ensure it can't be altered.
-