Uses of Interface
org.apache.commons.collections4.OrderedMap
-
Packages that use OrderedMap Package Description org.apache.commons.collections4 This package contains the interfaces and utilities shared across all the subpackages of this component.org.apache.commons.collections4.bidimap org.apache.commons.collections4.map org.apache.commons.collections4.trie This package contains implementations of theTrieinterface. -
-
Uses of OrderedMap in org.apache.commons.collections4
Subinterfaces of OrderedMap in org.apache.commons.collections4 Modifier and Type Interface Description interfaceIterableSortedMap<K,V>SortedMap+OrderedMap.interfaceOrderedBidiMap<K,V>Defines a map that allows bidirectional lookup between key and values and retains and provides access to an ordering.interfaceSortedBidiMap<K,V>Defines a map that allows bidirectional lookup between key and values and retains both keys and values in sorted order.interfaceTrie<K,V>Defines the interface for a prefix tree, an ordered tree data structure.Methods in org.apache.commons.collections4 that return OrderedMap Modifier and Type Method Description static <K,V>
OrderedMap<K,V>MapUtils. orderedMap(java.util.Map<K,V> map)Returns a map that maintains the order of keys that are added backed by the given map. -
Uses of OrderedMap in org.apache.commons.collections4.bidimap
Classes in org.apache.commons.collections4.bidimap that implement OrderedMap Modifier and Type Class Description classAbstractOrderedBidiMapDecorator<K,V>Provides a base decorator that enables additional functionality to be added to an OrderedBidiMap via decoration.classAbstractSortedBidiMapDecorator<K,V>Provides a base decorator that enables additional functionality to be added to a SortedBidiMap via decoration.classDualTreeBidiMap<K,V>Implementation ofBidiMapthat uses twoTreeMapinstances.protected static classDualTreeBidiMap.ViewMap<K,V>Internal sorted map view.classTreeBidiMap<K extends java.lang.Comparable<K>,V extends java.lang.Comparable<V>>Red-Black tree-based implementation of BidiMap where all objects added implement theComparableinterface.classUnmodifiableOrderedBidiMap<K,V>Decorates anotherOrderedBidiMapto ensure it can't be altered.classUnmodifiableSortedBidiMap<K,V>Decorates anotherSortedBidiMapto ensure it can't be altered. -
Uses of OrderedMap in org.apache.commons.collections4.map
Classes in org.apache.commons.collections4.map that implement OrderedMap Modifier and Type Class Description classAbstractLinkedMap<K,V>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.classAbstractOrderedMapDecorator<K,V>Provides a base decorator that enables additional functionality to be added to an OrderedMap via decoration.classAbstractSortedMapDecorator<K,V>Provides a base decorator that enables additional functionality to be added to a Map via decoration.classFixedSizeSortedMap<K,V>Decorates anotherSortedMapto fix the size blocking add/remove.classLinkedMap<K,V>AMapimplementation that maintains the order of the entries.classListOrderedMap<K,V>Decorates aMapto ensure that the order of addition is retained using aListto maintain order.classLRUMap<K,V>AMapimplementation with a fixed maximum size which removes the least recently used entry if an entry is added when full.classSingletonMap<K,V>AMapimplementation that holds a single item and is fixed size.classUnmodifiableOrderedMap<K,V>Decorates anotherOrderedMapto ensure it can't be altered.classUnmodifiableSortedMap<K,V>Decorates anotherSortedMapto ensure it can't be altered.Methods in org.apache.commons.collections4.map that return OrderedMap Modifier and Type Method Description protected OrderedMap<K,V>AbstractOrderedMapDecorator. decorated()Gets the map being decorated.static <K,V>
OrderedMap<K,V>UnmodifiableOrderedMap. unmodifiableOrderedMap(OrderedMap<? extends K,? extends V> map)Factory method to create an unmodifiable sorted map.Methods in org.apache.commons.collections4.map with parameters of type OrderedMap Modifier and Type Method Description static <K,V>
OrderedMap<K,V>UnmodifiableOrderedMap. unmodifiableOrderedMap(OrderedMap<? extends K,? extends V> map)Factory method to create an unmodifiable sorted map.Constructors in org.apache.commons.collections4.map with parameters of type OrderedMap Constructor Description AbstractOrderedMapDecorator(OrderedMap<K,V> map)Constructor that wraps (not copies). -
Uses of OrderedMap in org.apache.commons.collections4.trie
Classes in org.apache.commons.collections4.trie that implement OrderedMap Modifier and Type Class Description classAbstractBitwiseTrie<K,V>classPatriciaTrie<E>Implementation of a PATRICIA Trie (Practical Algorithm to Retrieve Information Coded in Alphanumeric).classUnmodifiableTrie<K,V>An unmodifiableTrie.
-