Class DualHashBidiMap<K,V>
- java.lang.Object
-
- org.apache.openjpa.lib.util.collections.AbstractDualBidiMap<K,V>
-
- org.apache.openjpa.lib.util.collections.DualHashBidiMap<K,V>
-
- Type Parameters:
K
- the type of the keys in the mapV
- the type of the values in the map
- All Implemented Interfaces:
java.io.Serializable
,java.util.Map<K,V>
,BidiMap<K,V>
,IterableMap<K,V>
public class DualHashBidiMap<K,V> extends AbstractDualBidiMap<K,V> implements java.io.Serializable
Implementation ofBidiMap
that uses twoHashMap
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 theBidiMap
interface.NOTE: From Commons Collections 3.1, all subclasses will use
HashMap
and the flawedcreateMap
method is ignored.- Since:
- 3.0
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.apache.openjpa.lib.util.collections.AbstractDualBidiMap
AbstractDualBidiMap.BidiMapIterator<K,V>, AbstractDualBidiMap.EntrySet<K,V>, AbstractDualBidiMap.EntrySetIterator<K,V>, AbstractDualBidiMap.KeySet<K>, AbstractDualBidiMap.KeySetIterator<K>, AbstractDualBidiMap.MapEntry<K,V>, AbstractDualBidiMap.Values<V>, AbstractDualBidiMap.ValuesIterator<V>, AbstractDualBidiMap.View<K,V,E>
-
-
Constructor Summary
Constructors Modifier Constructor Description DualHashBidiMap()
Creates an emptyHashBidiMap
.DualHashBidiMap(java.util.Map<? extends K,? extends V> map)
Constructs aHashBidiMap
and copies the mappings from specifiedMap
.protected
DualHashBidiMap(java.util.Map<K,V> normalMap, java.util.Map<V,K> reverseMap, BidiMap<V,K> inverseBidiMap)
Constructs aHashBidiMap
that decorates the specified maps.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected BidiMap<V,K>
createBidiMap(java.util.Map<V,K> normalMap, java.util.Map<K,V> reverseMap, BidiMap<K,V> inverseBidiMap)
Creates a new instance of this object.-
Methods inherited from class org.apache.openjpa.lib.util.collections.AbstractDualBidiMap
clear, containsKey, containsValue, createEntrySetIterator, createKeySetIterator, createValuesIterator, entrySet, equals, get, getKey, hashCode, inverseBidiMap, isEmpty, keySet, mapIterator, put, putAll, remove, removeValue, size, toString, values
-
-
-
-
Constructor Detail
-
DualHashBidiMap
public DualHashBidiMap()
Creates an emptyHashBidiMap
.
-
DualHashBidiMap
public DualHashBidiMap(java.util.Map<? extends K,? extends V> map)
Constructs aHashBidiMap
and copies the mappings from specifiedMap
.- Parameters:
map
- the map whose mappings are to be placed in this map
-
DualHashBidiMap
protected DualHashBidiMap(java.util.Map<K,V> normalMap, java.util.Map<V,K> reverseMap, BidiMap<V,K> inverseBidiMap)
Constructs aHashBidiMap
that decorates the specified maps.- Parameters:
normalMap
- the normal direction mapreverseMap
- the reverse direction mapinverseBidiMap
- the inverse BidiMap
-
-
Method Detail
-
createBidiMap
protected BidiMap<V,K> createBidiMap(java.util.Map<V,K> normalMap, java.util.Map<K,V> reverseMap, BidiMap<K,V> inverseBidiMap)
Creates a new instance of this object.- Specified by:
createBidiMap
in classAbstractDualBidiMap<K,V>
- Parameters:
normalMap
- the normal direction mapreverseMap
- the reverse direction mapinverseBidiMap
- the inverse BidiMap- Returns:
- new bidi map
-
-