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

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

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

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