Uses of Interface
org.apache.commons.collections4.OrderedBidiMap
Package
Description
Interfaces and utilities shared across all packages.
-
Uses of OrderedBidiMap in org.apache.commons.collections4
Modifier 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.Modifier 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
Modifier 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.Modifier 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()
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.Modifier and TypeMethodDescriptionstatic <K,
V> OrderedBidiMap<K, V> UnmodifiableOrderedBidiMap.unmodifiableOrderedBidiMap
(OrderedBidiMap<? extends K, ? extends V> map) Factory method to create an unmodifiable map.ModifierConstructorDescriptionprotected
Constructor that wraps (not copies).