Uses of Interface
org.apache.commons.collections4.SortedBidiMap
-
Packages that use SortedBidiMap 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 SortedBidiMap in org.apache.commons.collections4
Methods in org.apache.commons.collections4 that return SortedBidiMap Modifier and Type Method Description SortedBidiMap<V,K>
SortedBidiMap. inverseBidiMap()
Gets a view of this map where the keys and values are reversed. -
Uses of SortedBidiMap in org.apache.commons.collections4.bidimap
Classes in org.apache.commons.collections4.bidimap that implement SortedBidiMap Modifier and Type Class Description class
AbstractSortedBidiMapDecorator<K,V>
Provides a base decorator that enables additional functionality to be added to a SortedBidiMap via decoration.class
DualTreeBidiMap<K,V>
class
UnmodifiableSortedBidiMap<K,V>
Decorates anotherSortedBidiMap
to ensure it can't be altered.Methods in org.apache.commons.collections4.bidimap that return SortedBidiMap Modifier and Type Method Description protected SortedBidiMap<K,V>
AbstractSortedBidiMapDecorator. decorated()
Gets the map being decorated.SortedBidiMap<V,K>
AbstractSortedBidiMapDecorator. inverseBidiMap()
SortedBidiMap<V,K>
DualTreeBidiMap. inverseBidiMap()
SortedBidiMap<V,K>
UnmodifiableSortedBidiMap. inverseBidiMap()
SortedBidiMap<V,K>
DualTreeBidiMap. inverseSortedBidiMap()
static <K,V>
SortedBidiMap<K,V>UnmodifiableSortedBidiMap. unmodifiableSortedBidiMap(SortedBidiMap<K,? extends V> map)
Factory method to create an unmodifiable map.Methods in org.apache.commons.collections4.bidimap with parameters of type SortedBidiMap Modifier and Type Method Description static <K,V>
SortedBidiMap<K,V>UnmodifiableSortedBidiMap. unmodifiableSortedBidiMap(SortedBidiMap<K,? extends V> map)
Factory method to create an unmodifiable map.Constructors in org.apache.commons.collections4.bidimap with parameters of type SortedBidiMap Constructor Description AbstractSortedBidiMapDecorator(SortedBidiMap<K,V> map)
Constructor that wraps (not copies).
-