Uses of Interface
com.koloboke.collect.map.hash.HashObjObjMap

Packages that use HashObjObjMap
com.koloboke.collect.map.hash Contains interfaces of Map specializations, based on hash tables, their factories and static factory methods. 
 

Uses of HashObjObjMap in com.koloboke.collect.map.hash
 

Methods in com.koloboke.collect.map.hash that return HashObjObjMap
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newImmutableMap(Consumer<BiConsumer<K2,V2>> entriesSupplier)
           
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newImmutableMap(Consumer<BiConsumer<K2,V2>> entriesSupplier, int expectedSize)
           
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newImmutableMap(Consumer<BiConsumer<K,V>> entriesSupplier)
          Constructs a new immutable map filled with mappings consumed by the callback within the given closure.
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newImmutableMap(Consumer<BiConsumer<K,V>> entriesSupplier, int expectedSize)
          Constructs a new immutable map filled with mappings consumed by the callback within the given closure.
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newImmutableMap(Iterable<? extends K> keys, Iterable<? extends V> values)
          Constructs a new immutable map with the given mappings, i. e. pairs of elements from the keys and values iterables at the same iteration position.
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newImmutableMap(Iterable<? extends K> keys, Iterable<? extends V> values, int expectedSize)
          Constructs a new immutable map with the given mappings, i. e. pairs of elements from the keys and values iterables at the same iteration position.
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newImmutableMap(Iterable<? extends K2> keys, Iterable<? extends V2> values)
           
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newImmutableMap(Iterable<? extends K2> keys, Iterable<? extends V2> values, int expectedSize)
           
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newImmutableMap(K[] keys, V[] values)
          Constructs a new immutable map with the given mappings, i. e. pairs of elements from the keys and values arrays at the same index.
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newImmutableMap(K[] keys, V[] values, int expectedSize)
          Constructs a new immutable map with the given mappings, i. e. pairs of elements from the keys and values arrays at the same index.
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newImmutableMap(K2[] keys, V2[] values)
           
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newImmutableMap(K2[] keys, V2[] values, int expectedSize)
           
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newImmutableMap(Map<? extends K,? extends V> map)
          Constructs a new immutable map with the same mappings as the specified map.
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newImmutableMap(Map<? extends K,? extends V> map, int expectedSize)
          Constructs a new immutable map with the same mappings as the specified map.
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newImmutableMap(Map<? extends K,? extends V> map1, Map<? extends K,? extends V> map2)
          Constructs a new immutable map which merge the mappings of the specified maps.
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newImmutableMap(Map<? extends K,? extends V> map1, Map<? extends K,? extends V> map2, int expectedSize)
          Constructs a new immutable map which merge the mappings of the specified maps.
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newImmutableMap(Map<? extends K,? extends V> map1, Map<? extends K,? extends V> map2, Map<? extends K,? extends V> map3)
          Constructs a new immutable map which merge the mappings of the specified maps.
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newImmutableMap(Map<? extends K,? extends V> map1, Map<? extends K,? extends V> map2, Map<? extends K,? extends V> map3, int expectedSize)
          Constructs a new immutable map which merge the mappings of the specified maps.
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newImmutableMap(Map<? extends K,? extends V> map1, Map<? extends K,? extends V> map2, Map<? extends K,? extends V> map3, Map<? extends K,? extends V> map4)
          Constructs a new immutable map which merge the mappings of the specified maps.
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newImmutableMap(Map<? extends K,? extends V> map1, Map<? extends K,? extends V> map2, Map<? extends K,? extends V> map3, Map<? extends K,? extends V> map4, int expectedSize)
          Constructs a new immutable map which merge the mappings of the specified maps.
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newImmutableMap(Map<? extends K,? extends V> map1, Map<? extends K,? extends V> map2, Map<? extends K,? extends V> map3, Map<? extends K,? extends V> map4, Map<? extends K,? extends V> map5)
          Constructs a new immutable map which merge the mappings of the specified maps.
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newImmutableMap(Map<? extends K,? extends V> map1, Map<? extends K,? extends V> map2, Map<? extends K,? extends V> map3, Map<? extends K,? extends V> map4, Map<? extends K,? extends V> map5, int expectedSize)
          Constructs a new immutable map which merge the mappings of the specified maps.
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newImmutableMap(Map<? extends K2,? extends V2> map)
           
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newImmutableMap(Map<? extends K2,? extends V2> map, int expectedSize)
           
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newImmutableMap(Map<? extends K2,? extends V2> map1, Map<? extends K2,? extends V2> map2)
           
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newImmutableMap(Map<? extends K2,? extends V2> map1, Map<? extends K2,? extends V2> map2, int expectedSize)
           
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newImmutableMap(Map<? extends K2,? extends V2> map1, Map<? extends K2,? extends V2> map2, Map<? extends K2,? extends V2> map3)
           
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newImmutableMap(Map<? extends K2,? extends V2> map1, Map<? extends K2,? extends V2> map2, Map<? extends K2,? extends V2> map3, int expectedSize)
           
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newImmutableMap(Map<? extends K2,? extends V2> map1, Map<? extends K2,? extends V2> map2, Map<? extends K2,? extends V2> map3, Map<? extends K2,? extends V2> map4)
           
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newImmutableMap(Map<? extends K2,? extends V2> map1, Map<? extends K2,? extends V2> map2, Map<? extends K2,? extends V2> map3, Map<? extends K2,? extends V2> map4, int expectedSize)
           
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newImmutableMap(Map<? extends K2,? extends V2> map1, Map<? extends K2,? extends V2> map2, Map<? extends K2,? extends V2> map3, Map<? extends K2,? extends V2> map4, Map<? extends K2,? extends V2> map5)
           
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newImmutableMap(Map<? extends K2,? extends V2> map1, Map<? extends K2,? extends V2> map2, Map<? extends K2,? extends V2> map3, Map<? extends K2,? extends V2> map4, Map<? extends K2,? extends V2> map5, int expectedSize)
           
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newImmutableMapOf(K2 k1, V2 v1)
           
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newImmutableMapOf(K2 k1, V2 v1, K2 k2, V2 v2)
           
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newImmutableMapOf(K2 k1, V2 v1, K2 k2, V2 v2, K2 k3, V2 v3)
           
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newImmutableMapOf(K2 k1, V2 v1, K2 k2, V2 v2, K2 k3, V2 v3, K2 k4, V2 v4)
           
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newImmutableMapOf(K2 k1, V2 v1, K2 k2, V2 v2, K2 k3, V2 v3, K2 k4, V2 v4, K2 k5, V2 v5)
           
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newImmutableMapOf(K k1, V v1)
          Constructs a new immutable map of the single specified mapping.
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newImmutableMapOf(K k1, V v1, K k2, V v2)
          Constructs a new immutable map of the two specified mappings.
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newImmutableMapOf(K k1, V v1, K k2, V v2, K k3, V v3)
          Constructs a new immutable map of the three specified mappings.
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newImmutableMapOf(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4)
          Constructs a new immutable map of the four specified mappings.
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newImmutableMapOf(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5)
          Constructs a new immutable map of the five specified mappings.
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newMutableMap()
           
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newMutableMap()
          Constructs a new empty mutable map of the default expected size.
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newMutableMap(Consumer<BiConsumer<K2,V2>> entriesSupplier)
           
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newMutableMap(Consumer<BiConsumer<K2,V2>> entriesSupplier, int expectedSize)
           
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newMutableMap(Consumer<BiConsumer<K,V>> entriesSupplier)
          Constructs a new mutable map filled with mappings consumed by the callback within the given closure.
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newMutableMap(Consumer<BiConsumer<K,V>> entriesSupplier, int expectedSize)
          Constructs a new mutable map filled with mappings consumed by the callback within the given closure.
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newMutableMap(int expectedSize)
           
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newMutableMap(int expectedSize)
          Constructs a new empty mutable map of the given expected size.
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newMutableMap(Iterable<? extends K> keys, Iterable<? extends V> values)
          Constructs a new mutable map with the given mappings, i. e. pairs of elements from the keys and values iterables at the same iteration position.
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newMutableMap(Iterable<? extends K> keys, Iterable<? extends V> values, int expectedSize)
          Constructs a new mutable map with the given mappings, i. e. pairs of elements from the keys and values iterables at the same iteration position.
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newMutableMap(Iterable<? extends K2> keys, Iterable<? extends V2> values)
           
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newMutableMap(Iterable<? extends K2> keys, Iterable<? extends V2> values, int expectedSize)
           
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newMutableMap(K[] keys, V[] values)
          Constructs a new mutable map with the given mappings, i. e. pairs of elements from the keys and values arrays at the same index.
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newMutableMap(K[] keys, V[] values, int expectedSize)
          Constructs a new mutable map with the given mappings, i. e. pairs of elements from the keys and values arrays at the same index.
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newMutableMap(K2[] keys, V2[] values)
           
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newMutableMap(K2[] keys, V2[] values, int expectedSize)
           
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newMutableMap(Map<? extends K,? extends V> map)
          Constructs a new mutable map with the same mappings as the specified map.
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newMutableMap(Map<? extends K,? extends V> map, int expectedSize)
          Constructs a new mutable map with the same mappings as the specified map.
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newMutableMap(Map<? extends K,? extends V> map1, Map<? extends K,? extends V> map2)
          Constructs a new mutable map which merge the mappings of the specified maps.
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newMutableMap(Map<? extends K,? extends V> map1, Map<? extends K,? extends V> map2, int expectedSize)
          Constructs a new mutable map which merge the mappings of the specified maps.
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newMutableMap(Map<? extends K,? extends V> map1, Map<? extends K,? extends V> map2, Map<? extends K,? extends V> map3)
          Constructs a new mutable map which merge the mappings of the specified maps.
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newMutableMap(Map<? extends K,? extends V> map1, Map<? extends K,? extends V> map2, Map<? extends K,? extends V> map3, int expectedSize)
          Constructs a new mutable map which merge the mappings of the specified maps.
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newMutableMap(Map<? extends K,? extends V> map1, Map<? extends K,? extends V> map2, Map<? extends K,? extends V> map3, Map<? extends K,? extends V> map4)
          Constructs a new mutable map which merge the mappings of the specified maps.
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newMutableMap(Map<? extends K,? extends V> map1, Map<? extends K,? extends V> map2, Map<? extends K,? extends V> map3, Map<? extends K,? extends V> map4, int expectedSize)
          Constructs a new mutable map which merge the mappings of the specified maps.
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newMutableMap(Map<? extends K,? extends V> map1, Map<? extends K,? extends V> map2, Map<? extends K,? extends V> map3, Map<? extends K,? extends V> map4, Map<? extends K,? extends V> map5)
          Constructs a new mutable map which merge the mappings of the specified maps.
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newMutableMap(Map<? extends K,? extends V> map1, Map<? extends K,? extends V> map2, Map<? extends K,? extends V> map3, Map<? extends K,? extends V> map4, Map<? extends K,? extends V> map5, int expectedSize)
          Constructs a new mutable map which merge the mappings of the specified maps.
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newMutableMap(Map<? extends K2,? extends V2> map)
           
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newMutableMap(Map<? extends K2,? extends V2> map, int expectedSize)
           
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newMutableMap(Map<? extends K2,? extends V2> map1, Map<? extends K2,? extends V2> map2)
           
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newMutableMap(Map<? extends K2,? extends V2> map1, Map<? extends K2,? extends V2> map2, int expectedSize)
           
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newMutableMap(Map<? extends K2,? extends V2> map1, Map<? extends K2,? extends V2> map2, Map<? extends K2,? extends V2> map3)
           
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newMutableMap(Map<? extends K2,? extends V2> map1, Map<? extends K2,? extends V2> map2, Map<? extends K2,? extends V2> map3, int expectedSize)
           
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newMutableMap(Map<? extends K2,? extends V2> map1, Map<? extends K2,? extends V2> map2, Map<? extends K2,? extends V2> map3, Map<? extends K2,? extends V2> map4)
           
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newMutableMap(Map<? extends K2,? extends V2> map1, Map<? extends K2,? extends V2> map2, Map<? extends K2,? extends V2> map3, Map<? extends K2,? extends V2> map4, int expectedSize)
           
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newMutableMap(Map<? extends K2,? extends V2> map1, Map<? extends K2,? extends V2> map2, Map<? extends K2,? extends V2> map3, Map<? extends K2,? extends V2> map4, Map<? extends K2,? extends V2> map5)
           
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newMutableMap(Map<? extends K2,? extends V2> map1, Map<? extends K2,? extends V2> map2, Map<? extends K2,? extends V2> map3, Map<? extends K2,? extends V2> map4, Map<? extends K2,? extends V2> map5, int expectedSize)
           
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newMutableMapOf(K2 k1, V2 v1)
           
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newMutableMapOf(K2 k1, V2 v1, K2 k2, V2 v2)
           
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newMutableMapOf(K2 k1, V2 v1, K2 k2, V2 v2, K2 k3, V2 v3)
           
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newMutableMapOf(K2 k1, V2 v1, K2 k2, V2 v2, K2 k3, V2 v3, K2 k4, V2 v4)
           
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newMutableMapOf(K2 k1, V2 v1, K2 k2, V2 v2, K2 k3, V2 v3, K2 k4, V2 v4, K2 k5, V2 v5)
           
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newMutableMapOf(K k1, V v1)
          Constructs a new mutable map of the single specified mapping.
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newMutableMapOf(K k1, V v1, K k2, V v2)
          Constructs a new mutable map of the two specified mappings.
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newMutableMapOf(K k1, V v1, K k2, V v2, K k3, V v3)
          Constructs a new mutable map of the three specified mappings.
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newMutableMapOf(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4)
          Constructs a new mutable map of the four specified mappings.
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newMutableMapOf(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5)
          Constructs a new mutable map of the five specified mappings.
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newUpdatableMap()
           
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newUpdatableMap()
          Constructs a new empty updatable map of the default expected size.
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newUpdatableMap(Consumer<BiConsumer<K2,V2>> entriesSupplier)
           
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newUpdatableMap(Consumer<BiConsumer<K2,V2>> entriesSupplier, int expectedSize)
           
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newUpdatableMap(Consumer<BiConsumer<K,V>> entriesSupplier)
          Constructs a new updatable map filled with mappings consumed by the callback within the given closure.
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newUpdatableMap(Consumer<BiConsumer<K,V>> entriesSupplier, int expectedSize)
          Constructs a new updatable map filled with mappings consumed by the callback within the given closure.
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newUpdatableMap(int expectedSize)
           
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newUpdatableMap(int expectedSize)
          Constructs a new empty updatable map of the given expected size.
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newUpdatableMap(Iterable<? extends K> keys, Iterable<? extends V> values)
          Constructs a new updatable map with the given mappings, i. e. pairs of elements from the keys and values iterables at the same iteration position.
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newUpdatableMap(Iterable<? extends K> keys, Iterable<? extends V> values, int expectedSize)
          Constructs a new updatable map with the given mappings, i. e. pairs of elements from the keys and values iterables at the same iteration position.
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newUpdatableMap(Iterable<? extends K2> keys, Iterable<? extends V2> values)
           
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newUpdatableMap(Iterable<? extends K2> keys, Iterable<? extends V2> values, int expectedSize)
           
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newUpdatableMap(K[] keys, V[] values)
          Constructs a new updatable map with the given mappings, i. e. pairs of elements from the keys and values arrays at the same index.
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newUpdatableMap(K[] keys, V[] values, int expectedSize)
          Constructs a new updatable map with the given mappings, i. e. pairs of elements from the keys and values arrays at the same index.
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newUpdatableMap(K2[] keys, V2[] values)
           
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newUpdatableMap(K2[] keys, V2[] values, int expectedSize)
           
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newUpdatableMap(Map<? extends K,? extends V> map)
          Constructs a new updatable map with the same mappings as the specified map.
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newUpdatableMap(Map<? extends K,? extends V> map, int expectedSize)
          Constructs a new updatable map with the same mappings as the specified map.
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newUpdatableMap(Map<? extends K,? extends V> map1, Map<? extends K,? extends V> map2)
          Constructs a new updatable map which merge the mappings of the specified maps.
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newUpdatableMap(Map<? extends K,? extends V> map1, Map<? extends K,? extends V> map2, int expectedSize)
          Constructs a new updatable map which merge the mappings of the specified maps.
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newUpdatableMap(Map<? extends K,? extends V> map1, Map<? extends K,? extends V> map2, Map<? extends K,? extends V> map3)
          Constructs a new updatable map which merge the mappings of the specified maps.
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newUpdatableMap(Map<? extends K,? extends V> map1, Map<? extends K,? extends V> map2, Map<? extends K,? extends V> map3, int expectedSize)
          Constructs a new updatable map which merge the mappings of the specified maps.
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newUpdatableMap(Map<? extends K,? extends V> map1, Map<? extends K,? extends V> map2, Map<? extends K,? extends V> map3, Map<? extends K,? extends V> map4)
          Constructs a new updatable map which merge the mappings of the specified maps.
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newUpdatableMap(Map<? extends K,? extends V> map1, Map<? extends K,? extends V> map2, Map<? extends K,? extends V> map3, Map<? extends K,? extends V> map4, int expectedSize)
          Constructs a new updatable map which merge the mappings of the specified maps.
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newUpdatableMap(Map<? extends K,? extends V> map1, Map<? extends K,? extends V> map2, Map<? extends K,? extends V> map3, Map<? extends K,? extends V> map4, Map<? extends K,? extends V> map5)
          Constructs a new updatable map which merge the mappings of the specified maps.
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newUpdatableMap(Map<? extends K,? extends V> map1, Map<? extends K,? extends V> map2, Map<? extends K,? extends V> map3, Map<? extends K,? extends V> map4, Map<? extends K,? extends V> map5, int expectedSize)
          Constructs a new updatable map which merge the mappings of the specified maps.
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newUpdatableMap(Map<? extends K2,? extends V2> map)
           
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newUpdatableMap(Map<? extends K2,? extends V2> map, int expectedSize)
           
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newUpdatableMap(Map<? extends K2,? extends V2> map1, Map<? extends K2,? extends V2> map2)
           
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newUpdatableMap(Map<? extends K2,? extends V2> map1, Map<? extends K2,? extends V2> map2, int expectedSize)
           
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newUpdatableMap(Map<? extends K2,? extends V2> map1, Map<? extends K2,? extends V2> map2, Map<? extends K2,? extends V2> map3)
           
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newUpdatableMap(Map<? extends K2,? extends V2> map1, Map<? extends K2,? extends V2> map2, Map<? extends K2,? extends V2> map3, int expectedSize)
           
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newUpdatableMap(Map<? extends K2,? extends V2> map1, Map<? extends K2,? extends V2> map2, Map<? extends K2,? extends V2> map3, Map<? extends K2,? extends V2> map4)
           
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newUpdatableMap(Map<? extends K2,? extends V2> map1, Map<? extends K2,? extends V2> map2, Map<? extends K2,? extends V2> map3, Map<? extends K2,? extends V2> map4, int expectedSize)
           
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newUpdatableMap(Map<? extends K2,? extends V2> map1, Map<? extends K2,? extends V2> map2, Map<? extends K2,? extends V2> map3, Map<? extends K2,? extends V2> map4, Map<? extends K2,? extends V2> map5)
           
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newUpdatableMap(Map<? extends K2,? extends V2> map1, Map<? extends K2,? extends V2> map2, Map<? extends K2,? extends V2> map3, Map<? extends K2,? extends V2> map4, Map<? extends K2,? extends V2> map5, int expectedSize)
           
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newUpdatableMapOf(K2 k1, V2 v1)
           
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newUpdatableMapOf(K2 k1, V2 v1, K2 k2, V2 v2)
           
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newUpdatableMapOf(K2 k1, V2 v1, K2 k2, V2 v2, K2 k3, V2 v3)
           
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newUpdatableMapOf(K2 k1, V2 v1, K2 k2, V2 v2, K2 k3, V2 v3, K2 k4, V2 v4)
           
<K2 extends K,V2 extends V>
HashObjObjMap<K2,V2>
HashObjObjMapFactory.newUpdatableMapOf(K2 k1, V2 v1, K2 k2, V2 v2, K2 k3, V2 v3, K2 k4, V2 v4, K2 k5, V2 v5)
           
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newUpdatableMapOf(K k1, V v1)
          Constructs a new updatable map of the single specified mapping.
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newUpdatableMapOf(K k1, V v1, K k2, V v2)
          Constructs a new updatable map of the two specified mappings.
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newUpdatableMapOf(K k1, V v1, K k2, V v2, K k3, V v3)
          Constructs a new updatable map of the three specified mappings.
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newUpdatableMapOf(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4)
          Constructs a new updatable map of the four specified mappings.
static
<K,V> HashObjObjMap<K,V>
HashObjObjMaps.newUpdatableMapOf(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5)
          Constructs a new updatable map of the five specified mappings.