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

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

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

Methods in com.koloboke.collect.map.hash that return HashObjIntMap
static
<K> HashObjIntMap<K>
HashObjIntMaps.newImmutableMap(Consumer<ObjIntConsumer<K>> entriesSupplier)
          Constructs a new immutable map filled with mappings consumed by the callback within the given closure.
static
<K> HashObjIntMap<K>
HashObjIntMaps.newImmutableMap(Consumer<ObjIntConsumer<K>> entriesSupplier, int expectedSize)
          Constructs a new immutable map filled with mappings consumed by the callback within the given closure.
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newImmutableMap(Consumer<ObjIntConsumer<K2>> entriesSupplier)
           
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newImmutableMap(Consumer<ObjIntConsumer<K2>> entriesSupplier, int expectedSize)
           
static
<K> HashObjIntMap<K>
HashObjIntMaps.newImmutableMap(Iterable<? extends K> keys, Iterable<Integer> 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> HashObjIntMap<K>
HashObjIntMaps.newImmutableMap(Iterable<? extends K> keys, Iterable<Integer> 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>
HashObjIntMap<K2>
HashObjIntMapFactory.newImmutableMap(Iterable<? extends K2> keys, Iterable<Integer> values)
           
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newImmutableMap(Iterable<? extends K2> keys, Iterable<Integer> values, int expectedSize)
           
static
<K> HashObjIntMap<K>
HashObjIntMaps.newImmutableMap(K[] keys, int[] 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> HashObjIntMap<K>
HashObjIntMaps.newImmutableMap(K[] keys, int[] 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.
static
<K> HashObjIntMap<K>
HashObjIntMaps.newImmutableMap(K[] keys, Integer[] 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> HashObjIntMap<K>
HashObjIntMaps.newImmutableMap(K[] keys, Integer[] 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>
HashObjIntMap<K2>
HashObjIntMapFactory.newImmutableMap(K2[] keys, int[] values)
           
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newImmutableMap(K2[] keys, int[] values, int expectedSize)
           
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newImmutableMap(K2[] keys, Integer[] values)
           
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newImmutableMap(K2[] keys, Integer[] values, int expectedSize)
           
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newImmutableMap(Map<? extends K2,Integer> map)
           
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newImmutableMap(Map<? extends K2,Integer> map, int expectedSize)
           
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newImmutableMap(Map<? extends K2,Integer> map1, Map<? extends K2,Integer> map2)
           
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newImmutableMap(Map<? extends K2,Integer> map1, Map<? extends K2,Integer> map2, int expectedSize)
           
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newImmutableMap(Map<? extends K2,Integer> map1, Map<? extends K2,Integer> map2, Map<? extends K2,Integer> map3)
           
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newImmutableMap(Map<? extends K2,Integer> map1, Map<? extends K2,Integer> map2, Map<? extends K2,Integer> map3, int expectedSize)
           
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newImmutableMap(Map<? extends K2,Integer> map1, Map<? extends K2,Integer> map2, Map<? extends K2,Integer> map3, Map<? extends K2,Integer> map4)
           
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newImmutableMap(Map<? extends K2,Integer> map1, Map<? extends K2,Integer> map2, Map<? extends K2,Integer> map3, Map<? extends K2,Integer> map4, int expectedSize)
           
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newImmutableMap(Map<? extends K2,Integer> map1, Map<? extends K2,Integer> map2, Map<? extends K2,Integer> map3, Map<? extends K2,Integer> map4, Map<? extends K2,Integer> map5)
           
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newImmutableMap(Map<? extends K2,Integer> map1, Map<? extends K2,Integer> map2, Map<? extends K2,Integer> map3, Map<? extends K2,Integer> map4, Map<? extends K2,Integer> map5, int expectedSize)
           
static
<K> HashObjIntMap<K>
HashObjIntMaps.newImmutableMap(Map<? extends K,Integer> map)
          Constructs a new immutable map with the same mappings as the specified map.
static
<K> HashObjIntMap<K>
HashObjIntMaps.newImmutableMap(Map<? extends K,Integer> map, int expectedSize)
          Constructs a new immutable map with the same mappings as the specified map.
static
<K> HashObjIntMap<K>
HashObjIntMaps.newImmutableMap(Map<? extends K,Integer> map1, Map<? extends K,Integer> map2)
          Constructs a new immutable map which merge the mappings of the specified maps.
static
<K> HashObjIntMap<K>
HashObjIntMaps.newImmutableMap(Map<? extends K,Integer> map1, Map<? extends K,Integer> map2, int expectedSize)
          Constructs a new immutable map which merge the mappings of the specified maps.
static
<K> HashObjIntMap<K>
HashObjIntMaps.newImmutableMap(Map<? extends K,Integer> map1, Map<? extends K,Integer> map2, Map<? extends K,Integer> map3)
          Constructs a new immutable map which merge the mappings of the specified maps.
static
<K> HashObjIntMap<K>
HashObjIntMaps.newImmutableMap(Map<? extends K,Integer> map1, Map<? extends K,Integer> map2, Map<? extends K,Integer> map3, int expectedSize)
          Constructs a new immutable map which merge the mappings of the specified maps.
static
<K> HashObjIntMap<K>
HashObjIntMaps.newImmutableMap(Map<? extends K,Integer> map1, Map<? extends K,Integer> map2, Map<? extends K,Integer> map3, Map<? extends K,Integer> map4)
          Constructs a new immutable map which merge the mappings of the specified maps.
static
<K> HashObjIntMap<K>
HashObjIntMaps.newImmutableMap(Map<? extends K,Integer> map1, Map<? extends K,Integer> map2, Map<? extends K,Integer> map3, Map<? extends K,Integer> map4, int expectedSize)
          Constructs a new immutable map which merge the mappings of the specified maps.
static
<K> HashObjIntMap<K>
HashObjIntMaps.newImmutableMap(Map<? extends K,Integer> map1, Map<? extends K,Integer> map2, Map<? extends K,Integer> map3, Map<? extends K,Integer> map4, Map<? extends K,Integer> map5)
          Constructs a new immutable map which merge the mappings of the specified maps.
static
<K> HashObjIntMap<K>
HashObjIntMaps.newImmutableMap(Map<? extends K,Integer> map1, Map<? extends K,Integer> map2, Map<? extends K,Integer> map3, Map<? extends K,Integer> map4, Map<? extends K,Integer> map5, int expectedSize)
          Constructs a new immutable map which merge the mappings of the specified maps.
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newImmutableMapOf(K2 k1, int v1)
           
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newImmutableMapOf(K2 k1, int v1, K2 k2, int v2)
           
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newImmutableMapOf(K2 k1, int v1, K2 k2, int v2, K2 k3, int v3)
           
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newImmutableMapOf(K2 k1, int v1, K2 k2, int v2, K2 k3, int v3, K2 k4, int v4)
           
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newImmutableMapOf(K2 k1, int v1, K2 k2, int v2, K2 k3, int v3, K2 k4, int v4, K2 k5, int v5)
           
static
<K> HashObjIntMap<K>
HashObjIntMaps.newImmutableMapOf(K k1, int v1)
          Constructs a new immutable map of the single specified mapping.
static
<K> HashObjIntMap<K>
HashObjIntMaps.newImmutableMapOf(K k1, int v1, K k2, int v2)
          Constructs a new immutable map of the two specified mappings.
static
<K> HashObjIntMap<K>
HashObjIntMaps.newImmutableMapOf(K k1, int v1, K k2, int v2, K k3, int v3)
          Constructs a new immutable map of the three specified mappings.
static
<K> HashObjIntMap<K>
HashObjIntMaps.newImmutableMapOf(K k1, int v1, K k2, int v2, K k3, int v3, K k4, int v4)
          Constructs a new immutable map of the four specified mappings.
static
<K> HashObjIntMap<K>
HashObjIntMaps.newImmutableMapOf(K k1, int v1, K k2, int v2, K k3, int v3, K k4, int v4, K k5, int v5)
          Constructs a new immutable map of the five specified mappings.
static
<K> HashObjIntMap<K>
HashObjIntMaps.newMutableMap()
          Constructs a new empty mutable map of the default expected size.
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newMutableMap()
           
static
<K> HashObjIntMap<K>
HashObjIntMaps.newMutableMap(Consumer<ObjIntConsumer<K>> entriesSupplier)
          Constructs a new mutable map filled with mappings consumed by the callback within the given closure.
static
<K> HashObjIntMap<K>
HashObjIntMaps.newMutableMap(Consumer<ObjIntConsumer<K>> entriesSupplier, int expectedSize)
          Constructs a new mutable map filled with mappings consumed by the callback within the given closure.
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newMutableMap(Consumer<ObjIntConsumer<K2>> entriesSupplier)
           
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newMutableMap(Consumer<ObjIntConsumer<K2>> entriesSupplier, int expectedSize)
           
static
<K> HashObjIntMap<K>
HashObjIntMaps.newMutableMap(int expectedSize)
          Constructs a new empty mutable map of the given expected size.
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newMutableMap(int expectedSize)
           
static
<K> HashObjIntMap<K>
HashObjIntMaps.newMutableMap(Iterable<? extends K> keys, Iterable<Integer> 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> HashObjIntMap<K>
HashObjIntMaps.newMutableMap(Iterable<? extends K> keys, Iterable<Integer> 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>
HashObjIntMap<K2>
HashObjIntMapFactory.newMutableMap(Iterable<? extends K2> keys, Iterable<Integer> values)
           
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newMutableMap(Iterable<? extends K2> keys, Iterable<Integer> values, int expectedSize)
           
static
<K> HashObjIntMap<K>
HashObjIntMaps.newMutableMap(K[] keys, int[] 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> HashObjIntMap<K>
HashObjIntMaps.newMutableMap(K[] keys, int[] 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.
static
<K> HashObjIntMap<K>
HashObjIntMaps.newMutableMap(K[] keys, Integer[] 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> HashObjIntMap<K>
HashObjIntMaps.newMutableMap(K[] keys, Integer[] 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>
HashObjIntMap<K2>
HashObjIntMapFactory.newMutableMap(K2[] keys, int[] values)
           
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newMutableMap(K2[] keys, int[] values, int expectedSize)
           
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newMutableMap(K2[] keys, Integer[] values)
           
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newMutableMap(K2[] keys, Integer[] values, int expectedSize)
           
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newMutableMap(Map<? extends K2,Integer> map)
           
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newMutableMap(Map<? extends K2,Integer> map, int expectedSize)
           
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newMutableMap(Map<? extends K2,Integer> map1, Map<? extends K2,Integer> map2)
           
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newMutableMap(Map<? extends K2,Integer> map1, Map<? extends K2,Integer> map2, int expectedSize)
           
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newMutableMap(Map<? extends K2,Integer> map1, Map<? extends K2,Integer> map2, Map<? extends K2,Integer> map3)
           
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newMutableMap(Map<? extends K2,Integer> map1, Map<? extends K2,Integer> map2, Map<? extends K2,Integer> map3, int expectedSize)
           
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newMutableMap(Map<? extends K2,Integer> map1, Map<? extends K2,Integer> map2, Map<? extends K2,Integer> map3, Map<? extends K2,Integer> map4)
           
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newMutableMap(Map<? extends K2,Integer> map1, Map<? extends K2,Integer> map2, Map<? extends K2,Integer> map3, Map<? extends K2,Integer> map4, int expectedSize)
           
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newMutableMap(Map<? extends K2,Integer> map1, Map<? extends K2,Integer> map2, Map<? extends K2,Integer> map3, Map<? extends K2,Integer> map4, Map<? extends K2,Integer> map5)
           
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newMutableMap(Map<? extends K2,Integer> map1, Map<? extends K2,Integer> map2, Map<? extends K2,Integer> map3, Map<? extends K2,Integer> map4, Map<? extends K2,Integer> map5, int expectedSize)
           
static
<K> HashObjIntMap<K>
HashObjIntMaps.newMutableMap(Map<? extends K,Integer> map)
          Constructs a new mutable map with the same mappings as the specified map.
static
<K> HashObjIntMap<K>
HashObjIntMaps.newMutableMap(Map<? extends K,Integer> map, int expectedSize)
          Constructs a new mutable map with the same mappings as the specified map.
static
<K> HashObjIntMap<K>
HashObjIntMaps.newMutableMap(Map<? extends K,Integer> map1, Map<? extends K,Integer> map2)
          Constructs a new mutable map which merge the mappings of the specified maps.
static
<K> HashObjIntMap<K>
HashObjIntMaps.newMutableMap(Map<? extends K,Integer> map1, Map<? extends K,Integer> map2, int expectedSize)
          Constructs a new mutable map which merge the mappings of the specified maps.
static
<K> HashObjIntMap<K>
HashObjIntMaps.newMutableMap(Map<? extends K,Integer> map1, Map<? extends K,Integer> map2, Map<? extends K,Integer> map3)
          Constructs a new mutable map which merge the mappings of the specified maps.
static
<K> HashObjIntMap<K>
HashObjIntMaps.newMutableMap(Map<? extends K,Integer> map1, Map<? extends K,Integer> map2, Map<? extends K,Integer> map3, int expectedSize)
          Constructs a new mutable map which merge the mappings of the specified maps.
static
<K> HashObjIntMap<K>
HashObjIntMaps.newMutableMap(Map<? extends K,Integer> map1, Map<? extends K,Integer> map2, Map<? extends K,Integer> map3, Map<? extends K,Integer> map4)
          Constructs a new mutable map which merge the mappings of the specified maps.
static
<K> HashObjIntMap<K>
HashObjIntMaps.newMutableMap(Map<? extends K,Integer> map1, Map<? extends K,Integer> map2, Map<? extends K,Integer> map3, Map<? extends K,Integer> map4, int expectedSize)
          Constructs a new mutable map which merge the mappings of the specified maps.
static
<K> HashObjIntMap<K>
HashObjIntMaps.newMutableMap(Map<? extends K,Integer> map1, Map<? extends K,Integer> map2, Map<? extends K,Integer> map3, Map<? extends K,Integer> map4, Map<? extends K,Integer> map5)
          Constructs a new mutable map which merge the mappings of the specified maps.
static
<K> HashObjIntMap<K>
HashObjIntMaps.newMutableMap(Map<? extends K,Integer> map1, Map<? extends K,Integer> map2, Map<? extends K,Integer> map3, Map<? extends K,Integer> map4, Map<? extends K,Integer> map5, int expectedSize)
          Constructs a new mutable map which merge the mappings of the specified maps.
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newMutableMapOf(K2 k1, int v1)
           
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newMutableMapOf(K2 k1, int v1, K2 k2, int v2)
           
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newMutableMapOf(K2 k1, int v1, K2 k2, int v2, K2 k3, int v3)
           
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newMutableMapOf(K2 k1, int v1, K2 k2, int v2, K2 k3, int v3, K2 k4, int v4)
           
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newMutableMapOf(K2 k1, int v1, K2 k2, int v2, K2 k3, int v3, K2 k4, int v4, K2 k5, int v5)
           
static
<K> HashObjIntMap<K>
HashObjIntMaps.newMutableMapOf(K k1, int v1)
          Constructs a new mutable map of the single specified mapping.
static
<K> HashObjIntMap<K>
HashObjIntMaps.newMutableMapOf(K k1, int v1, K k2, int v2)
          Constructs a new mutable map of the two specified mappings.
static
<K> HashObjIntMap<K>
HashObjIntMaps.newMutableMapOf(K k1, int v1, K k2, int v2, K k3, int v3)
          Constructs a new mutable map of the three specified mappings.
static
<K> HashObjIntMap<K>
HashObjIntMaps.newMutableMapOf(K k1, int v1, K k2, int v2, K k3, int v3, K k4, int v4)
          Constructs a new mutable map of the four specified mappings.
static
<K> HashObjIntMap<K>
HashObjIntMaps.newMutableMapOf(K k1, int v1, K k2, int v2, K k3, int v3, K k4, int v4, K k5, int v5)
          Constructs a new mutable map of the five specified mappings.
static
<K> HashObjIntMap<K>
HashObjIntMaps.newUpdatableMap()
          Constructs a new empty updatable map of the default expected size.
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newUpdatableMap()
           
static
<K> HashObjIntMap<K>
HashObjIntMaps.newUpdatableMap(Consumer<ObjIntConsumer<K>> entriesSupplier)
          Constructs a new updatable map filled with mappings consumed by the callback within the given closure.
static
<K> HashObjIntMap<K>
HashObjIntMaps.newUpdatableMap(Consumer<ObjIntConsumer<K>> entriesSupplier, int expectedSize)
          Constructs a new updatable map filled with mappings consumed by the callback within the given closure.
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newUpdatableMap(Consumer<ObjIntConsumer<K2>> entriesSupplier)
           
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newUpdatableMap(Consumer<ObjIntConsumer<K2>> entriesSupplier, int expectedSize)
           
static
<K> HashObjIntMap<K>
HashObjIntMaps.newUpdatableMap(int expectedSize)
          Constructs a new empty updatable map of the given expected size.
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newUpdatableMap(int expectedSize)
           
static
<K> HashObjIntMap<K>
HashObjIntMaps.newUpdatableMap(Iterable<? extends K> keys, Iterable<Integer> 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> HashObjIntMap<K>
HashObjIntMaps.newUpdatableMap(Iterable<? extends K> keys, Iterable<Integer> 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>
HashObjIntMap<K2>
HashObjIntMapFactory.newUpdatableMap(Iterable<? extends K2> keys, Iterable<Integer> values)
           
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newUpdatableMap(Iterable<? extends K2> keys, Iterable<Integer> values, int expectedSize)
           
static
<K> HashObjIntMap<K>
HashObjIntMaps.newUpdatableMap(K[] keys, int[] 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> HashObjIntMap<K>
HashObjIntMaps.newUpdatableMap(K[] keys, int[] 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.
static
<K> HashObjIntMap<K>
HashObjIntMaps.newUpdatableMap(K[] keys, Integer[] 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> HashObjIntMap<K>
HashObjIntMaps.newUpdatableMap(K[] keys, Integer[] 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>
HashObjIntMap<K2>
HashObjIntMapFactory.newUpdatableMap(K2[] keys, int[] values)
           
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newUpdatableMap(K2[] keys, int[] values, int expectedSize)
           
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newUpdatableMap(K2[] keys, Integer[] values)
           
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newUpdatableMap(K2[] keys, Integer[] values, int expectedSize)
           
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newUpdatableMap(Map<? extends K2,Integer> map)
           
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newUpdatableMap(Map<? extends K2,Integer> map, int expectedSize)
           
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newUpdatableMap(Map<? extends K2,Integer> map1, Map<? extends K2,Integer> map2)
           
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newUpdatableMap(Map<? extends K2,Integer> map1, Map<? extends K2,Integer> map2, int expectedSize)
           
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newUpdatableMap(Map<? extends K2,Integer> map1, Map<? extends K2,Integer> map2, Map<? extends K2,Integer> map3)
           
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newUpdatableMap(Map<? extends K2,Integer> map1, Map<? extends K2,Integer> map2, Map<? extends K2,Integer> map3, int expectedSize)
           
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newUpdatableMap(Map<? extends K2,Integer> map1, Map<? extends K2,Integer> map2, Map<? extends K2,Integer> map3, Map<? extends K2,Integer> map4)
           
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newUpdatableMap(Map<? extends K2,Integer> map1, Map<? extends K2,Integer> map2, Map<? extends K2,Integer> map3, Map<? extends K2,Integer> map4, int expectedSize)
           
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newUpdatableMap(Map<? extends K2,Integer> map1, Map<? extends K2,Integer> map2, Map<? extends K2,Integer> map3, Map<? extends K2,Integer> map4, Map<? extends K2,Integer> map5)
           
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newUpdatableMap(Map<? extends K2,Integer> map1, Map<? extends K2,Integer> map2, Map<? extends K2,Integer> map3, Map<? extends K2,Integer> map4, Map<? extends K2,Integer> map5, int expectedSize)
           
static
<K> HashObjIntMap<K>
HashObjIntMaps.newUpdatableMap(Map<? extends K,Integer> map)
          Constructs a new updatable map with the same mappings as the specified map.
static
<K> HashObjIntMap<K>
HashObjIntMaps.newUpdatableMap(Map<? extends K,Integer> map, int expectedSize)
          Constructs a new updatable map with the same mappings as the specified map.
static
<K> HashObjIntMap<K>
HashObjIntMaps.newUpdatableMap(Map<? extends K,Integer> map1, Map<? extends K,Integer> map2)
          Constructs a new updatable map which merge the mappings of the specified maps.
static
<K> HashObjIntMap<K>
HashObjIntMaps.newUpdatableMap(Map<? extends K,Integer> map1, Map<? extends K,Integer> map2, int expectedSize)
          Constructs a new updatable map which merge the mappings of the specified maps.
static
<K> HashObjIntMap<K>
HashObjIntMaps.newUpdatableMap(Map<? extends K,Integer> map1, Map<? extends K,Integer> map2, Map<? extends K,Integer> map3)
          Constructs a new updatable map which merge the mappings of the specified maps.
static
<K> HashObjIntMap<K>
HashObjIntMaps.newUpdatableMap(Map<? extends K,Integer> map1, Map<? extends K,Integer> map2, Map<? extends K,Integer> map3, int expectedSize)
          Constructs a new updatable map which merge the mappings of the specified maps.
static
<K> HashObjIntMap<K>
HashObjIntMaps.newUpdatableMap(Map<? extends K,Integer> map1, Map<? extends K,Integer> map2, Map<? extends K,Integer> map3, Map<? extends K,Integer> map4)
          Constructs a new updatable map which merge the mappings of the specified maps.
static
<K> HashObjIntMap<K>
HashObjIntMaps.newUpdatableMap(Map<? extends K,Integer> map1, Map<? extends K,Integer> map2, Map<? extends K,Integer> map3, Map<? extends K,Integer> map4, int expectedSize)
          Constructs a new updatable map which merge the mappings of the specified maps.
static
<K> HashObjIntMap<K>
HashObjIntMaps.newUpdatableMap(Map<? extends K,Integer> map1, Map<? extends K,Integer> map2, Map<? extends K,Integer> map3, Map<? extends K,Integer> map4, Map<? extends K,Integer> map5)
          Constructs a new updatable map which merge the mappings of the specified maps.
static
<K> HashObjIntMap<K>
HashObjIntMaps.newUpdatableMap(Map<? extends K,Integer> map1, Map<? extends K,Integer> map2, Map<? extends K,Integer> map3, Map<? extends K,Integer> map4, Map<? extends K,Integer> map5, int expectedSize)
          Constructs a new updatable map which merge the mappings of the specified maps.
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newUpdatableMapOf(K2 k1, int v1)
           
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newUpdatableMapOf(K2 k1, int v1, K2 k2, int v2)
           
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newUpdatableMapOf(K2 k1, int v1, K2 k2, int v2, K2 k3, int v3)
           
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newUpdatableMapOf(K2 k1, int v1, K2 k2, int v2, K2 k3, int v3, K2 k4, int v4)
           
<K2 extends K>
HashObjIntMap<K2>
HashObjIntMapFactory.newUpdatableMapOf(K2 k1, int v1, K2 k2, int v2, K2 k3, int v3, K2 k4, int v4, K2 k5, int v5)
           
static
<K> HashObjIntMap<K>
HashObjIntMaps.newUpdatableMapOf(K k1, int v1)
          Constructs a new updatable map of the single specified mapping.
static
<K> HashObjIntMap<K>
HashObjIntMaps.newUpdatableMapOf(K k1, int v1, K k2, int v2)
          Constructs a new updatable map of the two specified mappings.
static
<K> HashObjIntMap<K>
HashObjIntMaps.newUpdatableMapOf(K k1, int v1, K k2, int v2, K k3, int v3)
          Constructs a new updatable map of the three specified mappings.
static
<K> HashObjIntMap<K>
HashObjIntMaps.newUpdatableMapOf(K k1, int v1, K k2, int v2, K k3, int v3, K k4, int v4)
          Constructs a new updatable map of the four specified mappings.
static
<K> HashObjIntMap<K>
HashObjIntMaps.newUpdatableMapOf(K k1, int v1, K k2, int v2, K k3, int v3, K k4, int v4, K k5, int v5)
          Constructs a new updatable map of the five specified mappings.