Class DualHashBidiMap
java.lang.Object
org.apache.commons.collections.bidimap.AbstractDualBidiMap
org.apache.commons.collections.bidimap.DualHashBidiMap
- All Implemented Interfaces:
Serializable,Map,BidiMap,IterableMap
@Deprecated(since="2021-04-30")
public class DualHashBidiMap
extends AbstractDualBidiMap
implements Serializable
Deprecated.
Apache Commons Collections version 3.x is being deprecated from AEMaaCS. The upgraded version 4.4 of Commons Collections is already included as replacement. Customers are advised to upgrade to this version of the library. Please note: the package name was changed to org.apache.commons.collections4. Further note that there are AEM APIs currently exposing the old collections classes; these will be updated in upcoming releases.
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
- See Also:
-
Nested Class Summary
-
Constructor Summary
ConstructorsConstructorDescriptionDeprecated.Creates an emptyHashBidiMap.DualHashBidiMap(Map map) Deprecated.Constructs aHashBidiMapand copies the mappings from specifiedMap. -
Method Summary
Methods inherited from class org.apache.commons.collections.bidimap.AbstractDualBidiMap
clear, containsKey, containsValue, entrySet, equals, get, getKey, hashCode, inverseBidiMap, isEmpty, keySet, mapIterator, put, putAll, remove, removeValue, size, toString, valuesMethods inherited from interface java.util.Map
compute, computeIfAbsent, computeIfPresent, forEach, getOrDefault, merge, putIfAbsent, remove, replace, replace, replaceAll
-
Constructor Details
-
DualHashBidiMap
public DualHashBidiMap()Deprecated.Creates an emptyHashBidiMap. -
DualHashBidiMap
Deprecated.Constructs aHashBidiMapand copies the mappings from specifiedMap.- Parameters:
map- the map whose mappings are to be placed in this map
-