Uses of Interface
org.apache.commons.collections.OrderedMap
-
Packages that use OrderedMap 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 OrderedMap in org.apache.commons.collections
Subinterfaces of OrderedMap in org.apache.commons.collections Modifier and Type Interface Description interfaceOrderedBidiMapDefines a map that allows bidirectional lookup between key and values and retains and provides access to an ordering.interfaceSortedBidiMapDefines a map that allows bidirectional lookup between key and values and retains both keys and values in sorted order. -
Uses of OrderedMap in org.apache.commons.collections.bidimap
Classes in org.apache.commons.collections.bidimap that implement OrderedMap Modifier and Type Class Description 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.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.classUnmodifiableOrderedBidiMapDecorates anotherOrderedBidiMapto ensure it can't be altered.classUnmodifiableSortedBidiMapDecorates anotherSortedBidiMapto ensure it can't be altered. -
Uses of OrderedMap in org.apache.commons.collections.map
Classes in org.apache.commons.collections.map that implement OrderedMap Modifier and Type Class Description 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.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.classSingletonMapAMapimplementation that holds a single item and is fixed size.classUnmodifiableOrderedMapDecorates anotherOrderedMapto ensure it can't be altered.Methods in org.apache.commons.collections.map that return OrderedMap Modifier and Type Method Description static OrderedMapListOrderedMap. decorate(java.util.Map map)Factory method to create an ordered map.static OrderedMapUnmodifiableOrderedMap. decorate(OrderedMap map)Factory method to create an unmodifiable sorted map.protected OrderedMapAbstractOrderedMapDecorator. getOrderedMap()Gets the map being decorated.Methods in org.apache.commons.collections.map with parameters of type OrderedMap Modifier and Type Method Description static OrderedMapUnmodifiableOrderedMap. decorate(OrderedMap map)Factory method to create an unmodifiable sorted map.Constructors in org.apache.commons.collections.map with parameters of type OrderedMap Constructor Description AbstractOrderedMapDecorator(OrderedMap map)Constructor that wraps (not copies).UnmodifiableOrderedMap(OrderedMap map)Constructor that wraps (not copies).
-