Class DualHashBidiMap
java.lang.Object
org.apache.commons.collections.bidimap.AbstractDualBidiMap
org.apache.commons.collections.bidimap.DualHashBidiMap
- All Implemented Interfaces:
Serializable
,Map
,BidiMap
,IterableMap
Implementation of
BidiMap
that uses two HashMap
instances.
Two HashMap
instances are used in this class.
This provides fast lookups at the expense of storing two sets of map entries.
Commons Collections would welcome the addition of a direct hash-based
implementation of the BidiMap
interface.
NOTE: From Commons Collections 3.1, all subclasses will use HashMap
and the flawed createMap
method is ignored.
- Since:
- Commons Collections 3.0
- Version:
- $Id: DualHashBidiMap.java 646777 2008-04-10 12:33:15Z niallp $
- Author:
- Matthew Hawthorne, Stephen Colebourne
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class org.apache.commons.collections.bidimap.AbstractDualBidiMap
AbstractDualBidiMap.BidiMapIterator, AbstractDualBidiMap.EntrySet, AbstractDualBidiMap.EntrySetIterator, AbstractDualBidiMap.KeySet, AbstractDualBidiMap.KeySetIterator, AbstractDualBidiMap.MapEntry, AbstractDualBidiMap.Values, AbstractDualBidiMap.ValuesIterator, AbstractDualBidiMap.View
-
Field Summary
Fields inherited from class org.apache.commons.collections.bidimap.AbstractDualBidiMap
entrySet, inverseBidiMap, keySet, maps, values
-
Constructor Summary
ConstructorsModifierConstructorDescriptionCreates an emptyHashBidiMap
.DualHashBidiMap
(Map map) Constructs aHashBidiMap
and copies the mappings from specifiedMap
.protected
DualHashBidiMap
(Map normalMap, Map reverseMap, BidiMap inverseBidiMap) Constructs aHashBidiMap
that decorates the specified maps. -
Method Summary
Modifier and TypeMethodDescriptionprotected BidiMap
createBidiMap
(Map normalMap, Map reverseMap, BidiMap inverseBidiMap) Creates a new instance of this object.Methods inherited from class org.apache.commons.collections.bidimap.AbstractDualBidiMap
clear, containsKey, containsValue, createEntrySetIterator, createKeySetIterator, createMap, createValuesIterator, entrySet, equals, get, getKey, hashCode, inverseBidiMap, isEmpty, keySet, mapIterator, put, putAll, remove, removeValue, size, toString, values
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface java.util.Map
compute, computeIfAbsent, computeIfPresent, forEach, getOrDefault, merge, putIfAbsent, remove, replace, replace, replaceAll
-
Constructor Details
-
DualHashBidiMap
public DualHashBidiMap()Creates an emptyHashBidiMap
. -
DualHashBidiMap
Constructs aHashBidiMap
and copies the mappings from specifiedMap
.- Parameters:
map
- the map whose mappings are to be placed in this map
-
DualHashBidiMap
Constructs aHashBidiMap
that decorates the specified maps.- Parameters:
normalMap
- the normal direction mapreverseMap
- the reverse direction mapinverseBidiMap
- the inverse BidiMap
-
-
Method Details
-
createBidiMap
Creates a new instance of this object.- Specified by:
createBidiMap
in classAbstractDualBidiMap
- Parameters:
normalMap
- the normal direction mapreverseMap
- the reverse direction mapinverseBidiMap
- the inverse BidiMap- Returns:
- new bidi map
-