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

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

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

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