Uses of Interface
org.apache.commons.collections15.SortedBidiMap

Packages that use SortedBidiMap
org.apache.commons.collections15 This package contains the interfaces and utilities shared across all the subpackages of this component. 
org.apache.commons.collections15.bidimap This package contains implementations of the BidiMap, OrderedBidiMap and SortedBidiMap interfaces. 
 

Uses of SortedBidiMap in org.apache.commons.collections15
 

Methods in org.apache.commons.collections15 that return SortedBidiMap
 SortedBidiMap<V,K> SortedBidiMap.inverseSortedBidiMap()
          Gets a view of this map where the keys and values are reversed.
 

Uses of SortedBidiMap in org.apache.commons.collections15.bidimap
 

Classes in org.apache.commons.collections15.bidimap that implement SortedBidiMap
 class AbstractSortedBidiMapDecorator<K,V>
          Provides a base decorator that enables additional functionality to be added to a SortedBidiMap via decoration.
 class DualTreeBidiMap<K,V>
          Implementation of BidiMap that uses two TreeMap instances.
 class UnmodifiableSortedBidiMap<K,V>
          Decorates another SortedBidiMap to ensure it can't be altered.
 

Methods in org.apache.commons.collections15.bidimap that return SortedBidiMap
static
<K,V> SortedBidiMap<K,V>
UnmodifiableSortedBidiMap.decorate(SortedBidiMap<K,V> map)
          Factory method to create an unmodifiable map.
protected  SortedBidiMap<K,V> AbstractSortedBidiMapDecorator.getSortedBidiMap()
          Gets the map being decorated.
 SortedBidiMap<V,K> AbstractSortedBidiMapDecorator.inverseSortedBidiMap()
           
 SortedBidiMap<V,K> DualTreeBidiMap.inverseSortedBidiMap()
           
 SortedBidiMap<V,K> UnmodifiableSortedBidiMap.inverseSortedBidiMap()
           
 

Methods in org.apache.commons.collections15.bidimap with parameters of type SortedBidiMap
static
<K,V> SortedBidiMap<K,V>
UnmodifiableSortedBidiMap.decorate(SortedBidiMap<K,V> map)
          Factory method to create an unmodifiable map.
 

Constructors in org.apache.commons.collections15.bidimap with parameters of type SortedBidiMap
AbstractSortedBidiMapDecorator(SortedBidiMap<K,V> map)
          Constructor that wraps (not copies).
 



Copyright © 2001-2010 Apache Software Foundation. All Rights Reserved.