Uses of Interface
org.apache.openjpa.lib.util.collections.OrderedMap
- 
Packages that use OrderedMap Package Description org.apache.openjpa.lib.util General Utilitiesorg.apache.openjpa.lib.util.collections commons-collections4 import. - 
- 
Uses of OrderedMap in org.apache.openjpa.lib.util
Classes in org.apache.openjpa.lib.util that implement OrderedMap Modifier and Type Class Description classLRUMapExtension of the commonsLRUMapthat can change its maximum size. - 
Uses of OrderedMap in org.apache.openjpa.lib.util.collections
Subinterfaces of OrderedMap in org.apache.openjpa.lib.util.collections Modifier and Type Interface Description interfaceIterableSortedMap<K,V>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.Classes in org.apache.openjpa.lib.util.collections 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.classDualTreeBidiMap<K,V>protected static classDualTreeBidiMap.ViewMap<K,V>Internal sorted map view.classLinkedMap<K,V>AMapimplementation that maintains the order of the entries.classLRUMap<K,V>AMapimplementation with a fixed maximum size which removes the least recently used entry if an entry is added when full.classTreeBidiMap<K extends Comparable<K>,V extends Comparable<V>>Red-Black tree-based implementation of BidiMap where all objects added implement theComparableinterface.classUnmodifiableOrderedMap<K,V>Decorates anotherOrderedMapto ensure it can't be altered.Methods in org.apache.openjpa.lib.util.collections 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.openjpa.lib.util.collections 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.openjpa.lib.util.collections with parameters of type OrderedMap Constructor Description AbstractOrderedMapDecorator(OrderedMap<K,V> map)Constructor that wraps (not copies). 
 -