|
||||||||||
PREV PACKAGE NEXT PACKAGE | FRAMES NO FRAMES |
BidiMap
,
OrderedBidiMap
and
SortedBidiMap
interfaces.
See:
Description
Class Summary | |
---|---|
AbstractBidiMapDecorator<K,V> | Provides a base decorator that enables additional functionality to be added to a BidiMap via decoration. |
AbstractDualBidiMap<K,V> | Abstract BidiMap implemented using two maps. |
AbstractDualBidiMap.BidiMapIterator<K,V> | Inner class MapIterator. |
AbstractDualBidiMap.EntrySet<K,V> | Inner class EntrySet. |
AbstractDualBidiMap.EntrySetIterator<K,V> | Inner class EntrySetIterator. |
AbstractDualBidiMap.KeySet<K,V> | Inner class KeySet. |
AbstractDualBidiMap.KeySetIterator<K,V> | Inner class KeySetIterator. |
AbstractDualBidiMap.MapEntry<K,V> | Inner class MapEntry. |
AbstractDualBidiMap.Values<K,V> | Inner class Values. |
AbstractDualBidiMap.ValuesIterator<K,V> | Inner class ValuesIterator. |
AbstractDualBidiMap.View<K,V,E> | Inner class View. |
AbstractOrderedBidiMapDecorator<K,V> | Provides a base decorator that enables additional functionality to be added to an OrderedBidiMap via decoration. |
AbstractSortedBidiMapDecorator<K,V> | Provides a base decorator that enables additional functionality to be added to a SortedBidiMap via decoration. |
DualHashBidiMap<K,V> | Implementation of BidiMap that uses two HashMap instances. |
DualTreeBidiMap<K,V> | Implementation of BidiMap that uses two TreeMap instances. |
DualTreeBidiMap.BidiOrderedMapIterator<K,V> | Inner class MapIterator. |
DualTreeBidiMap.ViewMap<K,V> | Internal sorted map view. |
TreeBidiMap<K extends Comparable,V extends Comparable> | Red-Black tree-based implementation of BidiMap where all objects added
implement the Comparable interface. |
UnmodifiableBidiMap<K,V> | Decorates another BidiMap to ensure it can't be altered. |
UnmodifiableOrderedBidiMap<K,V> | Decorates another OrderedBidiMap to ensure it can't be altered. |
UnmodifiableSortedBidiMap<K,V> | Decorates another SortedBidiMap to ensure it can't be altered. |
This package contains implementations of the
BidiMap
,
OrderedBidiMap
and
SortedBidiMap
interfaces.
A BidiMap is an extension to Map that allows keys and values to be looked up with equal ease.
One example usage is a system communicating to a legacy datasource that must convert codes
from the new format to the old format and vice versa.
The following implementations are provided in the package:
The following decorators are provided in the package:
|
||||||||||
PREV PACKAGE NEXT PACKAGE | FRAMES NO FRAMES |