Uses of Interface
org.apache.commons.collections4.OrderedBidiMap
-
Packages that use OrderedBidiMap 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 -
-
Uses of OrderedBidiMap in org.apache.commons.collections4
Subinterfaces of OrderedBidiMap in org.apache.commons.collections4 Modifier and Type Interface Description interfaceSortedBidiMap<K,V>Defines a map that allows bidirectional lookup between key and values and retains both keys and values in sorted order.Methods in org.apache.commons.collections4 that return OrderedBidiMap Modifier and Type Method Description OrderedBidiMap<V,K>OrderedBidiMap. inverseBidiMap()Gets a view of this map where the keys and values are reversed. -
Uses of OrderedBidiMap in org.apache.commons.collections4.bidimap
Classes in org.apache.commons.collections4.bidimap that implement OrderedBidiMap 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.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.Methods in org.apache.commons.collections4.bidimap that return OrderedBidiMap Modifier and Type Method Description protected OrderedBidiMap<K,V>AbstractOrderedBidiMapDecorator. decorated()Gets the map being decorated.OrderedBidiMap<V,K>AbstractOrderedBidiMapDecorator. inverseBidiMap()OrderedBidiMap<V,K>TreeBidiMap. inverseBidiMap()Gets the inverse map for comparison.OrderedBidiMap<V,K>UnmodifiableOrderedBidiMap. inverseBidiMap()OrderedBidiMap<V,K>DualTreeBidiMap. inverseOrderedBidiMap()OrderedBidiMap<V,K>UnmodifiableOrderedBidiMap. inverseOrderedBidiMap()Gets an unmodifiable view of this map where the keys and values are reversed.static <K,V>
OrderedBidiMap<K,V>UnmodifiableOrderedBidiMap. unmodifiableOrderedBidiMap(OrderedBidiMap<? extends K,? extends V> map)Factory method to create an unmodifiable map.Methods in org.apache.commons.collections4.bidimap with parameters of type OrderedBidiMap Modifier and Type Method Description static <K,V>
OrderedBidiMap<K,V>UnmodifiableOrderedBidiMap. unmodifiableOrderedBidiMap(OrderedBidiMap<? extends K,? extends V> map)Factory method to create an unmodifiable map.Constructors in org.apache.commons.collections4.bidimap with parameters of type OrderedBidiMap Constructor Description AbstractOrderedBidiMapDecorator(OrderedBidiMap<K,V> map)Constructor that wraps (not copies).
-