Package org.apache.commons.collections.bidimap
package org.apache.commons.collections.bidimap
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:
- DualHashBidiMap - uses two HashMaps to implement BidiMap
- DualTreeBidiMap - uses two TreeMaps to implement SortedBidiMap
- TreeBidiMap - red-black tree implementation of OrderedBidiMap
The following decorators are provided in the package:
- Unmodifiable - ensures the map cannot be altered
-
ClassesClassDescriptionProvides a base decorator that enables additional functionality to be added to a BidiMap via decoration.Abstract
BidiMap
implemented using two maps.Inner class MapIterator.Inner class EntrySet.Inner class EntrySetIterator.Inner class KeySet.Inner class KeySetIterator.Inner class MapEntry.Inner class Values.Inner class ValuesIterator.Inner class View.Provides a base decorator that enables additional functionality to be added to an OrderedBidiMap via decoration.Provides a base decorator that enables additional functionality to be added to a SortedBidiMap via decoration.Implementation ofBidiMap
that uses twoHashMap
instances.Implementation ofBidiMap
that uses twoTreeMap
instances.Inner class MapIterator.Internal sorted map view.Red-Black tree-based implementation of BidiMap where all objects added implement theComparable
interface.Decorates anotherBidiMap
to ensure it can't be altered.Decorates anotherOrderedBidiMap
to ensure it can't be altered.Decorates anotherSortedBidiMap
to ensure it can't be altered.