Uses of Interface
org.apache.commons.collections4.OrderedBidiMap
Packages that use OrderedBidiMap
Package
Description
Interfaces and utilities shared across all packages.
-
Uses of OrderedBidiMap in org.apache.commons.collections4
Subinterfaces of OrderedBidiMap in org.apache.commons.collections4Modifier and TypeInterfaceDescriptioninterface
SortedBidiMap<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 OrderedBidiMapModifier and TypeMethodDescriptionOrderedBidiMap.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 OrderedBidiMapModifier and TypeClassDescriptionclass
Provides a base decorator that enables additional functionality to be added to an OrderedBidiMap via decoration.class
Provides a base decorator that enables additional functionality to be added to a SortedBidiMap via decoration.class
DualTreeBidiMap<K,
V> class
TreeBidiMap<K extends Comparable<K>,
V extends Comparable<V>> Red-Black tree-based implementation of BidiMap where all objects added implement theComparable
interface.final class
Decorates anotherOrderedBidiMap
to ensure it can't be altered.final class
Decorates anotherSortedBidiMap
to ensure it can't be altered.Methods in org.apache.commons.collections4.bidimap that return OrderedBidiMapModifier and TypeMethodDescriptionprotected OrderedBidiMap
<K, V> AbstractOrderedBidiMapDecorator.decorated()
Gets the map being decorated.AbstractOrderedBidiMapDecorator.inverseBidiMap()
TreeBidiMap.inverseBidiMap()
Gets the inverse map for comparison.UnmodifiableOrderedBidiMap.inverseBidiMap()
DualTreeBidiMap.inverseOrderedBidiMap()
Defaults toDualTreeBidiMap.inverseBidiMap()
.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 OrderedBidiMapModifier and TypeMethodDescriptionstatic <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 OrderedBidiMapModifierConstructorDescriptionprotected
Constructor that wraps (not copies).