Uses of Interface
org.apache.commons.collections.OrderedBidiMap
-
Packages that use OrderedBidiMap 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 -
-
Uses of OrderedBidiMap in org.apache.commons.collections
Subinterfaces of OrderedBidiMap in org.apache.commons.collections Modifier and Type Interface Description interface
SortedBidiMap
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.collections that return OrderedBidiMap Modifier and Type Method Description OrderedBidiMap
OrderedBidiMap. inverseOrderedBidiMap()
Gets a view of this map where the keys and values are reversed. -
Uses of OrderedBidiMap in org.apache.commons.collections.bidimap
Classes in org.apache.commons.collections.bidimap that implement OrderedBidiMap Modifier and Type Class Description class
AbstractOrderedBidiMapDecorator
Provides a base decorator that enables additional functionality to be added to an OrderedBidiMap via decoration.class
AbstractSortedBidiMapDecorator
Provides a base decorator that enables additional functionality to be added to a SortedBidiMap via decoration.class
DualTreeBidiMap
Implementation ofBidiMap
that uses twoTreeMap
instances.class
TreeBidiMap
Red-Black tree-based implementation of BidiMap where all objects added implement theComparable
interface.class
UnmodifiableOrderedBidiMap
Decorates anotherOrderedBidiMap
to ensure it can't be altered.class
UnmodifiableSortedBidiMap
Decorates anotherSortedBidiMap
to ensure it can't be altered.Methods in org.apache.commons.collections.bidimap that return OrderedBidiMap Modifier and Type Method Description static OrderedBidiMap
UnmodifiableOrderedBidiMap. decorate(OrderedBidiMap map)
Factory method to create an unmodifiable map.protected OrderedBidiMap
AbstractOrderedBidiMapDecorator. getOrderedBidiMap()
Gets the map being decorated.OrderedBidiMap
AbstractOrderedBidiMapDecorator. inverseOrderedBidiMap()
OrderedBidiMap
DualTreeBidiMap. inverseOrderedBidiMap()
OrderedBidiMap
TreeBidiMap. inverseOrderedBidiMap()
Gets the inverse map for comparison.OrderedBidiMap
UnmodifiableOrderedBidiMap. inverseOrderedBidiMap()
OrderedBidiMap
UnmodifiableSortedBidiMap. inverseOrderedBidiMap()
Methods in org.apache.commons.collections.bidimap with parameters of type OrderedBidiMap Modifier and Type Method Description static OrderedBidiMap
UnmodifiableOrderedBidiMap. decorate(OrderedBidiMap map)
Factory method to create an unmodifiable map.Constructors in org.apache.commons.collections.bidimap with parameters of type OrderedBidiMap Constructor Description AbstractOrderedBidiMapDecorator(OrderedBidiMap map)
Constructor that wraps (not copies).
-