Class DualHashBidiMap

  • All Implemented Interfaces:
    java.io.Serializable, java.util.Map, BidiMap, IterableMap

    @Deprecated
    public class DualHashBidiMap
    extends AbstractDualBidiMap
    implements java.io.Serializable
    Deprecated.
    Please use Apache Commons Collections 4 instead.
    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:
    Serialized Form
    • Constructor Detail

      • DualHashBidiMap

        public DualHashBidiMap()
        Deprecated.
        Creates an empty HashBidiMap.
      • DualHashBidiMap

        public DualHashBidiMap​(java.util.Map map)
        Deprecated.
        Constructs a HashBidiMap and copies the mappings from specified Map.
        Parameters:
        map - the map whose mappings are to be placed in this map