public interface HashByteShortMapFactory extends ByteShortMapFactory<HashByteShortMapFactory>, ByteHashFactory<HashByteShortMapFactory>
HashByteShortMap
s.Modifier and Type | Method and Description |
---|---|
HashByteShortMap |
newImmutableMap(byte[] keys,
short[] values)
Constructs a new immutable map with the given mappings, i.
|
HashByteShortMap |
newImmutableMap(Byte[] keys,
Short[] values)
Constructs a new immutable map with the given mappings, i.
|
HashByteShortMap |
newImmutableMap(byte[] keys,
short[] values,
int expectedSize)
Constructs a new immutable map with the given mappings, i.
|
HashByteShortMap |
newImmutableMap(Byte[] keys,
Short[] values,
int expectedSize)
Constructs a new immutable map with the given mappings, i.
|
HashByteShortMap |
newImmutableMap(Consumer<ByteShortConsumer> entriesSupplier)
Constructs a new immutable map filled with mappings consumed by the callback within the given
closure.
|
HashByteShortMap |
newImmutableMap(Consumer<ByteShortConsumer> entriesSupplier,
int expectedSize)
Constructs a new immutable map filled with mappings consumed by the callback within the given
closure.
|
HashByteShortMap |
newImmutableMap(Iterable<Byte> keys,
Iterable<Short> values)
Constructs a new immutable map with the given mappings, i.
|
HashByteShortMap |
newImmutableMap(Iterable<Byte> keys,
Iterable<Short> values,
int expectedSize)
Constructs a new immutable map with the given mappings, i.
|
HashByteShortMap |
newImmutableMap(Map<Byte,Short> map)
Constructs a new immutable map with the same mappings as the specified
map . |
HashByteShortMap |
newImmutableMap(Map<Byte,Short> map1,
Map<Byte,Short> map2)
Constructs a new immutable map which merge the mappings of the specified maps.
|
HashByteShortMap |
newImmutableMap(Map<Byte,Short> map1,
Map<Byte,Short> map2,
int expectedSize)
Constructs a new immutable map which merge the mappings of the specified maps.
|
HashByteShortMap |
newImmutableMap(Map<Byte,Short> map1,
Map<Byte,Short> map2,
Map<Byte,Short> map3)
Constructs a new immutable map which merge the mappings of the specified maps.
|
HashByteShortMap |
newImmutableMap(Map<Byte,Short> map1,
Map<Byte,Short> map2,
Map<Byte,Short> map3,
int expectedSize)
Constructs a new immutable map which merge the mappings of the specified maps.
|
HashByteShortMap |
newImmutableMap(Map<Byte,Short> map1,
Map<Byte,Short> map2,
Map<Byte,Short> map3,
Map<Byte,Short> map4)
Constructs a new immutable map which merge the mappings of the specified maps.
|
HashByteShortMap |
newImmutableMap(Map<Byte,Short> map1,
Map<Byte,Short> map2,
Map<Byte,Short> map3,
Map<Byte,Short> map4,
int expectedSize)
Constructs a new immutable map which merge the mappings of the specified maps.
|
HashByteShortMap |
newImmutableMap(Map<Byte,Short> map1,
Map<Byte,Short> map2,
Map<Byte,Short> map3,
Map<Byte,Short> map4,
Map<Byte,Short> map5)
Constructs a new immutable map which merge the mappings of the specified maps.
|
HashByteShortMap |
newImmutableMap(Map<Byte,Short> map1,
Map<Byte,Short> map2,
Map<Byte,Short> map3,
Map<Byte,Short> map4,
Map<Byte,Short> map5,
int expectedSize)
Constructs a new immutable map which merge the mappings of the specified maps.
|
HashByteShortMap |
newImmutableMapOf(byte k1,
short v1)
Constructs a new immutable map of the single specified mapping.
|
HashByteShortMap |
newImmutableMapOf(byte k1,
short v1,
byte k2,
short v2)
Constructs a new immutable map of the two specified mappings.
|
HashByteShortMap |
newImmutableMapOf(byte k1,
short v1,
byte k2,
short v2,
byte k3,
short v3)
Constructs a new immutable map of the three specified mappings.
|
HashByteShortMap |
newImmutableMapOf(byte k1,
short v1,
byte k2,
short v2,
byte k3,
short v3,
byte k4,
short v4)
Constructs a new immutable map of the four specified mappings.
|
HashByteShortMap |
newImmutableMapOf(byte k1,
short v1,
byte k2,
short v2,
byte k3,
short v3,
byte k4,
short v4,
byte k5,
short v5)
Constructs a new immutable map of the five specified mappings.
|
HashByteShortMap |
newMutableMap()
Constructs a new empty mutable map of the default expected size.
|
HashByteShortMap |
newMutableMap(byte[] keys,
short[] values)
Constructs a new mutable map with the given mappings, i.
|
HashByteShortMap |
newMutableMap(Byte[] keys,
Short[] values)
Constructs a new mutable map with the given mappings, i.
|
HashByteShortMap |
newMutableMap(byte[] keys,
short[] values,
int expectedSize)
Constructs a new mutable map with the given mappings, i.
|
HashByteShortMap |
newMutableMap(Byte[] keys,
Short[] values,
int expectedSize)
Constructs a new mutable map with the given mappings, i.
|
HashByteShortMap |
newMutableMap(Consumer<ByteShortConsumer> entriesSupplier)
Constructs a new mutable map filled with mappings consumed by the callback within the given
closure.
|
HashByteShortMap |
newMutableMap(Consumer<ByteShortConsumer> entriesSupplier,
int expectedSize)
Constructs a new mutable map filled with mappings consumed by the callback within the given
closure.
|
HashByteShortMap |
newMutableMap(int expectedSize)
Constructs a new empty mutable map of the given expected size.
|
HashByteShortMap |
newMutableMap(Iterable<Byte> keys,
Iterable<Short> values)
Constructs a new mutable map with the given mappings, i.
|
HashByteShortMap |
newMutableMap(Iterable<Byte> keys,
Iterable<Short> values,
int expectedSize)
Constructs a new mutable map with the given mappings, i.
|
HashByteShortMap |
newMutableMap(Map<Byte,Short> map)
Constructs a new mutable map with the same mappings as the specified
map . |
HashByteShortMap |
newMutableMap(Map<Byte,Short> map1,
Map<Byte,Short> map2)
Constructs a new mutable map which merge the mappings of the specified maps.
|
HashByteShortMap |
newMutableMap(Map<Byte,Short> map1,
Map<Byte,Short> map2,
int expectedSize)
Constructs a new mutable map which merge the mappings of the specified maps.
|
HashByteShortMap |
newMutableMap(Map<Byte,Short> map1,
Map<Byte,Short> map2,
Map<Byte,Short> map3)
Constructs a new mutable map which merge the mappings of the specified maps.
|
HashByteShortMap |
newMutableMap(Map<Byte,Short> map1,
Map<Byte,Short> map2,
Map<Byte,Short> map3,
int expectedSize)
Constructs a new mutable map which merge the mappings of the specified maps.
|
HashByteShortMap |
newMutableMap(Map<Byte,Short> map1,
Map<Byte,Short> map2,
Map<Byte,Short> map3,
Map<Byte,Short> map4)
Constructs a new mutable map which merge the mappings of the specified maps.
|
HashByteShortMap |
newMutableMap(Map<Byte,Short> map1,
Map<Byte,Short> map2,
Map<Byte,Short> map3,
Map<Byte,Short> map4,
int expectedSize)
Constructs a new mutable map which merge the mappings of the specified maps.
|
HashByteShortMap |
newMutableMap(Map<Byte,Short> map1,
Map<Byte,Short> map2,
Map<Byte,Short> map3,
Map<Byte,Short> map4,
Map<Byte,Short> map5)
Constructs a new mutable map which merge the mappings of the specified maps.
|
HashByteShortMap |
newMutableMap(Map<Byte,Short> map1,
Map<Byte,Short> map2,
Map<Byte,Short> map3,
Map<Byte,Short> map4,
Map<Byte,Short> map5,
int expectedSize)
Constructs a new mutable map which merge the mappings of the specified maps.
|
HashByteShortMap |
newMutableMapOf(byte k1,
short v1)
Constructs a new mutable map of the single specified mapping.
|
HashByteShortMap |
newMutableMapOf(byte k1,
short v1,
byte k2,
short v2)
Constructs a new mutable map of the two specified mappings.
|
HashByteShortMap |
newMutableMapOf(byte k1,
short v1,
byte k2,
short v2,
byte k3,
short v3)
Constructs a new mutable map of the three specified mappings.
|
HashByteShortMap |
newMutableMapOf(byte k1,
short v1,
byte k2,
short v2,
byte k3,
short v3,
byte k4,
short v4)
Constructs a new mutable map of the four specified mappings.
|
HashByteShortMap |
newMutableMapOf(byte k1,
short v1,
byte k2,
short v2,
byte k3,
short v3,
byte k4,
short v4,
byte k5,
short v5)
Constructs a new mutable map of the five specified mappings.
|
HashByteShortMap |
newUpdatableMap()
Constructs a new empty updatable map of the default expected size.
|
HashByteShortMap |
newUpdatableMap(byte[] keys,
short[] values)
Constructs a new updatable map with the given mappings, i.
|
HashByteShortMap |
newUpdatableMap(Byte[] keys,
Short[] values)
Constructs a new updatable map with the given mappings, i.
|
HashByteShortMap |
newUpdatableMap(byte[] keys,
short[] values,
int expectedSize)
Constructs a new updatable map with the given mappings, i.
|
HashByteShortMap |
newUpdatableMap(Byte[] keys,
Short[] values,
int expectedSize)
Constructs a new updatable map with the given mappings, i.
|
HashByteShortMap |
newUpdatableMap(Consumer<ByteShortConsumer> entriesSupplier)
Constructs a new updatable map filled with mappings consumed by the callback within the given
closure.
|
HashByteShortMap |
newUpdatableMap(Consumer<ByteShortConsumer> entriesSupplier,
int expectedSize)
Constructs a new updatable map filled with mappings consumed by the callback within the given
closure.
|
HashByteShortMap |
newUpdatableMap(int expectedSize)
Constructs a new empty updatable map of the given expected size.
|
HashByteShortMap |
newUpdatableMap(Iterable<Byte> keys,
Iterable<Short> values)
Constructs a new updatable map with the given mappings, i.
|
HashByteShortMap |
newUpdatableMap(Iterable<Byte> keys,
Iterable<Short> values,
int expectedSize)
Constructs a new updatable map with the given mappings, i.
|
HashByteShortMap |
newUpdatableMap(Map<Byte,Short> map)
Constructs a new updatable map with the same mappings as the specified
map . |
HashByteShortMap |
newUpdatableMap(Map<Byte,Short> map1,
Map<Byte,Short> map2)
Constructs a new updatable map which merge the mappings of the specified maps.
|
HashByteShortMap |
newUpdatableMap(Map<Byte,Short> map1,
Map<Byte,Short> map2,
int expectedSize)
Constructs a new updatable map which merge the mappings of the specified maps.
|
HashByteShortMap |
newUpdatableMap(Map<Byte,Short> map1,
Map<Byte,Short> map2,
Map<Byte,Short> map3)
Constructs a new updatable map which merge the mappings of the specified maps.
|
HashByteShortMap |
newUpdatableMap(Map<Byte,Short> map1,
Map<Byte,Short> map2,
Map<Byte,Short> map3,
int expectedSize)
Constructs a new updatable map which merge the mappings of the specified maps.
|
HashByteShortMap |
newUpdatableMap(Map<Byte,Short> map1,
Map<Byte,Short> map2,
Map<Byte,Short> map3,
Map<Byte,Short> map4)
Constructs a new updatable map which merge the mappings of the specified maps.
|
HashByteShortMap |
newUpdatableMap(Map<Byte,Short> map1,
Map<Byte,Short> map2,
Map<Byte,Short> map3,
Map<Byte,Short> map4,
int expectedSize)
Constructs a new updatable map which merge the mappings of the specified maps.
|
HashByteShortMap |
newUpdatableMap(Map<Byte,Short> map1,
Map<Byte,Short> map2,
Map<Byte,Short> map3,
Map<Byte,Short> map4,
Map<Byte,Short> map5)
Constructs a new updatable map which merge the mappings of the specified maps.
|
HashByteShortMap |
newUpdatableMap(Map<Byte,Short> map1,
Map<Byte,Short> map2,
Map<Byte,Short> map3,
Map<Byte,Short> map4,
Map<Byte,Short> map5,
int expectedSize)
Constructs a new updatable map which merge the mappings of the specified maps.
|
HashByteShortMap |
newUpdatableMapOf(byte k1,
short v1)
Constructs a new updatable map of the single specified mapping.
|
HashByteShortMap |
newUpdatableMapOf(byte k1,
short v1,
byte k2,
short v2)
Constructs a new updatable map of the two specified mappings.
|
HashByteShortMap |
newUpdatableMapOf(byte k1,
short v1,
byte k2,
short v2,
byte k3,
short v3)
Constructs a new updatable map of the three specified mappings.
|
HashByteShortMap |
newUpdatableMapOf(byte k1,
short v1,
byte k2,
short v2,
byte k3,
short v3,
byte k4,
short v4)
Constructs a new updatable map of the four specified mappings.
|
HashByteShortMap |
newUpdatableMapOf(byte k1,
short v1,
byte k2,
short v2,
byte k3,
short v3,
byte k4,
short v4,
byte k5,
short v5)
Constructs a new updatable map of the five specified mappings.
|
getDefaultValue, withDefaultValue
getLowerKeyDomainBound, getUpperKeyDomainBound, withKeysDomain, withKeysDomainComplement
getHashConfig, withHashConfig
getDefaultExpectedSize, withDefaultExpectedSize
@Nonnull HashByteShortMap newMutableMap()
ByteShortMapFactory
newMutableMap
in interface ByteShortMapFactory<HashByteShortMapFactory>
@Nonnull HashByteShortMap newMutableMap(int expectedSize)
ByteShortMapFactory
newMutableMap
in interface ByteShortMapFactory<HashByteShortMapFactory>
expectedSize
- the expected size of the returned map@Nonnull HashByteShortMap newMutableMap(@Nonnull Map<Byte,Short> map1, @Nonnull Map<Byte,Short> map2, int expectedSize)
ByteShortMapFactory
map2
have priority over mappings from the map1
with
the same keys.newMutableMap
in interface ByteShortMapFactory<HashByteShortMapFactory>
map1
- the first map to mergemap2
- the second map to mergeexpectedSize
- the expected size of the returned map@Nonnull HashByteShortMap newMutableMap(@Nonnull Map<Byte,Short> map1, @Nonnull Map<Byte,Short> map2, @Nonnull Map<Byte,Short> map3, int expectedSize)
ByteShortMapFactory
newMutableMap
in interface ByteShortMapFactory<HashByteShortMapFactory>
map1
- the first map to mergemap2
- the second map to mergemap3
- the third map to mergeexpectedSize
- the expected size of the returned map@Nonnull HashByteShortMap newMutableMap(@Nonnull Map<Byte,Short> map1, @Nonnull Map<Byte,Short> map2, @Nonnull Map<Byte,Short> map3, @Nonnull Map<Byte,Short> map4, int expectedSize)
ByteShortMapFactory
newMutableMap
in interface ByteShortMapFactory<HashByteShortMapFactory>
map1
- the first map to mergemap2
- the second map to mergemap3
- the third map to mergemap4
- the fourth map to mergeexpectedSize
- the expected size of the returned map@Nonnull HashByteShortMap newMutableMap(@Nonnull Map<Byte,Short> map1, @Nonnull Map<Byte,Short> map2, @Nonnull Map<Byte,Short> map3, @Nonnull Map<Byte,Short> map4, @Nonnull Map<Byte,Short> map5, int expectedSize)
ByteShortMapFactory
newMutableMap
in interface ByteShortMapFactory<HashByteShortMapFactory>
map1
- the first map to mergemap2
- the second map to mergemap3
- the third map to mergemap4
- the fourth map to mergemap5
- the fifth map to mergeexpectedSize
- the expected size of the returned map@Nonnull HashByteShortMap newMutableMap(@Nonnull Consumer<ByteShortConsumer> entriesSupplier, int expectedSize)
ByteShortMapFactory
Example: TODO
newMutableMap
in interface ByteShortMapFactory<HashByteShortMapFactory>
entriesSupplier
- the function which supply mappings for the returned map via
the callback passed inexpectedSize
- the expected size of the returned map@Nonnull HashByteShortMap newMutableMap(@Nonnull byte[] keys, @Nonnull short[] values, int expectedSize)
ByteShortMapFactory
keys
and values
arrays at the same index. If keys
array have
duplicate elements, value corresponding the key with the highest index is left
in the returned map.newMutableMap
in interface ByteShortMapFactory<HashByteShortMapFactory>
keys
- the keys of the returned mapvalues
- the values of the returned map, each value is associated with the element
of the keys
array at the same indexexpectedSize
- the expected size of the returned map@Nonnull HashByteShortMap newMutableMap(@Nonnull Byte[] keys, @Nonnull Short[] values, int expectedSize)
ByteShortMapFactory
keys
and values
arrays at the same index. If keys
array have
duplicate elements, value corresponding the key with the highest index is left
in the returned map.newMutableMap
in interface ByteShortMapFactory<HashByteShortMapFactory>
keys
- the keys of the returned mapvalues
- the values of the returned map, each value is associated with the element
of the keys
array at the same indexexpectedSize
- the expected size of the returned map@Nonnull HashByteShortMap newMutableMap(@Nonnull Iterable<Byte> keys, @Nonnull Iterable<Short> values, int expectedSize)
ByteShortMapFactory
keys
and values
iterables at the same iteration position. If keys
have duplicate elements, value corresponding the key appeared last in the iteration is left
in the returned map.newMutableMap
in interface ByteShortMapFactory<HashByteShortMapFactory>
keys
- the keys of the returned mapvalues
- the values of the returned map, each value is associated with the element
of the keys
iterable at the same iteration positionexpectedSize
- the expected size of the returned map@Nonnull HashByteShortMap newMutableMap(@Nonnull Map<Byte,Short> map)
ByteShortMapFactory
map
.newMutableMap
in interface ByteShortMapFactory<HashByteShortMapFactory>
map
- the map whose mappings are to be placed in the returned mapmap
@Nonnull HashByteShortMap newMutableMap(@Nonnull Map<Byte,Short> map1, @Nonnull Map<Byte,Short> map2)
ByteShortMapFactory
map2
have priority over mappings from the map1
with
the same keys.newMutableMap
in interface ByteShortMapFactory<HashByteShortMapFactory>
map1
- the first map to mergemap2
- the second map to merge@Nonnull HashByteShortMap newMutableMap(@Nonnull Map<Byte,Short> map1, @Nonnull Map<Byte,Short> map2, @Nonnull Map<Byte,Short> map3)
ByteShortMapFactory
newMutableMap
in interface ByteShortMapFactory<HashByteShortMapFactory>
map1
- the first map to mergemap2
- the second map to mergemap3
- the third map to merge@Nonnull HashByteShortMap newMutableMap(@Nonnull Map<Byte,Short> map1, @Nonnull Map<Byte,Short> map2, @Nonnull Map<Byte,Short> map3, @Nonnull Map<Byte,Short> map4)
ByteShortMapFactory
newMutableMap
in interface ByteShortMapFactory<HashByteShortMapFactory>
map1
- the first map to mergemap2
- the second map to mergemap3
- the third map to mergemap4
- the fourth map to merge@Nonnull HashByteShortMap newMutableMap(@Nonnull Map<Byte,Short> map1, @Nonnull Map<Byte,Short> map2, @Nonnull Map<Byte,Short> map3, @Nonnull Map<Byte,Short> map4, @Nonnull Map<Byte,Short> map5)
ByteShortMapFactory
newMutableMap
in interface ByteShortMapFactory<HashByteShortMapFactory>
map1
- the first map to mergemap2
- the second map to mergemap3
- the third map to mergemap4
- the fourth map to mergemap5
- the fifth map to merge@Nonnull HashByteShortMap newMutableMap(@Nonnull Consumer<ByteShortConsumer> entriesSupplier)
ByteShortMapFactory
Example: TODO
newMutableMap
in interface ByteShortMapFactory<HashByteShortMapFactory>
entriesSupplier
- the function which supply mappings for the returned map via
the callback passed in@Nonnull HashByteShortMap newMutableMap(@Nonnull byte[] keys, @Nonnull short[] values)
ByteShortMapFactory
keys
and values
arrays at the same index. If keys
array have
duplicate elements, value corresponding the key with the highest index is left
in the returned map.newMutableMap
in interface ByteShortMapFactory<HashByteShortMapFactory>
keys
- the keys of the returned mapvalues
- the values of the returned map, each value is associated with the element
of the keys
array at the same index@Nonnull HashByteShortMap newMutableMap(@Nonnull Byte[] keys, @Nonnull Short[] values)
ByteShortMapFactory
keys
and values
arrays at the same index. If keys
array have
duplicate elements, value corresponding the key with the highest index is left
in the returned map.newMutableMap
in interface ByteShortMapFactory<HashByteShortMapFactory>
keys
- the keys of the returned mapvalues
- the values of the returned map, each value is associated with the element
of the keys
array at the same index@Nonnull HashByteShortMap newMutableMap(@Nonnull Iterable<Byte> keys, @Nonnull Iterable<Short> values)
ByteShortMapFactory
keys
and values
iterables at the same iteration position. If keys
have duplicate elements, value corresponding the key appeared last in the iteration is left
in the returned map.newMutableMap
in interface ByteShortMapFactory<HashByteShortMapFactory>
keys
- the keys of the returned mapvalues
- the values of the returned map, each value is associated with the element
of the keys
iterable at the same iteration position@Nonnull HashByteShortMap newMutableMapOf(byte k1, short v1)
ByteShortMapFactory
newMutableMapOf
in interface ByteShortMapFactory<HashByteShortMapFactory>
k1
- the key of the sole mappingv1
- the value of the sole mapping@Nonnull HashByteShortMap newMutableMapOf(byte k1, short v1, byte k2, short v2)
ByteShortMapFactory
newMutableMapOf
in interface ByteShortMapFactory<HashByteShortMapFactory>
k1
- the key of the first mappingv1
- the value of the first mappingk2
- the key of the second mappingv2
- the value of the second mapping@Nonnull HashByteShortMap newMutableMapOf(byte k1, short v1, byte k2, short v2, byte k3, short v3)
ByteShortMapFactory
newMutableMapOf
in interface ByteShortMapFactory<HashByteShortMapFactory>
k1
- the key of the first mappingv1
- the value of the first mappingk2
- the key of the second mappingv2
- the value of the second mappingk3
- the key of the third mappingv3
- the value of the third mapping@Nonnull HashByteShortMap newMutableMapOf(byte k1, short v1, byte k2, short v2, byte k3, short v3, byte k4, short v4)
ByteShortMapFactory
newMutableMapOf
in interface ByteShortMapFactory<HashByteShortMapFactory>
k1
- the key of the first mappingv1
- the value of the first mappingk2
- the key of the second mappingv2
- the value of the second mappingk3
- the key of the third mappingv3
- the value of the third mappingk4
- the key of the fourth mappingv4
- the value of the fourth mapping@Nonnull HashByteShortMap newMutableMapOf(byte k1, short v1, byte k2, short v2, byte k3, short v3, byte k4, short v4, byte k5, short v5)
ByteShortMapFactory
newMutableMapOf
in interface ByteShortMapFactory<HashByteShortMapFactory>
k1
- the key of the first mappingv1
- the value of the first mappingk2
- the key of the second mappingv2
- the value of the second mappingk3
- the key of the third mappingv3
- the value of the third mappingk4
- the key of the fourth mappingv4
- the value of the fourth mappingk5
- the key of the fifth mappingv5
- the value of the fifth mapping@Nonnull HashByteShortMap newUpdatableMap()
ByteShortMapFactory
newUpdatableMap
in interface ByteShortMapFactory<HashByteShortMapFactory>
@Nonnull HashByteShortMap newUpdatableMap(int expectedSize)
ByteShortMapFactory
newUpdatableMap
in interface ByteShortMapFactory<HashByteShortMapFactory>
expectedSize
- the expected size of the returned map@Nonnull HashByteShortMap newUpdatableMap(@Nonnull Map<Byte,Short> map1, @Nonnull Map<Byte,Short> map2, int expectedSize)
ByteShortMapFactory
map2
have priority over mappings from the map1
with
the same keys.newUpdatableMap
in interface ByteShortMapFactory<HashByteShortMapFactory>
map1
- the first map to mergemap2
- the second map to mergeexpectedSize
- the expected size of the returned map@Nonnull HashByteShortMap newUpdatableMap(@Nonnull Map<Byte,Short> map1, @Nonnull Map<Byte,Short> map2, @Nonnull Map<Byte,Short> map3, int expectedSize)
ByteShortMapFactory
newUpdatableMap
in interface ByteShortMapFactory<HashByteShortMapFactory>
map1
- the first map to mergemap2
- the second map to mergemap3
- the third map to mergeexpectedSize
- the expected size of the returned map@Nonnull HashByteShortMap newUpdatableMap(@Nonnull Map<Byte,Short> map1, @Nonnull Map<Byte,Short> map2, @Nonnull Map<Byte,Short> map3, @Nonnull Map<Byte,Short> map4, int expectedSize)
ByteShortMapFactory
newUpdatableMap
in interface ByteShortMapFactory<HashByteShortMapFactory>
map1
- the first map to mergemap2
- the second map to mergemap3
- the third map to mergemap4
- the fourth map to mergeexpectedSize
- the expected size of the returned map@Nonnull HashByteShortMap newUpdatableMap(@Nonnull Map<Byte,Short> map1, @Nonnull Map<Byte,Short> map2, @Nonnull Map<Byte,Short> map3, @Nonnull Map<Byte,Short> map4, @Nonnull Map<Byte,Short> map5, int expectedSize)
ByteShortMapFactory
newUpdatableMap
in interface ByteShortMapFactory<HashByteShortMapFactory>
map1
- the first map to mergemap2
- the second map to mergemap3
- the third map to mergemap4
- the fourth map to mergemap5
- the fifth map to mergeexpectedSize
- the expected size of the returned map@Nonnull HashByteShortMap newUpdatableMap(@Nonnull Consumer<ByteShortConsumer> entriesSupplier, int expectedSize)
ByteShortMapFactory
Example: TODO
newUpdatableMap
in interface ByteShortMapFactory<HashByteShortMapFactory>
entriesSupplier
- the function which supply mappings for the returned map via
the callback passed inexpectedSize
- the expected size of the returned map@Nonnull HashByteShortMap newUpdatableMap(@Nonnull byte[] keys, @Nonnull short[] values, int expectedSize)
ByteShortMapFactory
keys
and values
arrays at the same index. If keys
array have
duplicate elements, value corresponding the key with the highest index is left
in the returned map.newUpdatableMap
in interface ByteShortMapFactory<HashByteShortMapFactory>
keys
- the keys of the returned mapvalues
- the values of the returned map, each value is associated with the element
of the keys
array at the same indexexpectedSize
- the expected size of the returned map@Nonnull HashByteShortMap newUpdatableMap(@Nonnull Byte[] keys, @Nonnull Short[] values, int expectedSize)
ByteShortMapFactory
keys
and values
arrays at the same index. If keys
array have
duplicate elements, value corresponding the key with the highest index is left
in the returned map.newUpdatableMap
in interface ByteShortMapFactory<HashByteShortMapFactory>
keys
- the keys of the returned mapvalues
- the values of the returned map, each value is associated with the element
of the keys
array at the same indexexpectedSize
- the expected size of the returned map@Nonnull HashByteShortMap newUpdatableMap(@Nonnull Iterable<Byte> keys, @Nonnull Iterable<Short> values, int expectedSize)
ByteShortMapFactory
keys
and values
iterables at the same iteration position. If keys
have duplicate elements, value corresponding the key appeared last in the iteration is left
in the returned map.newUpdatableMap
in interface ByteShortMapFactory<HashByteShortMapFactory>
keys
- the keys of the returned mapvalues
- the values of the returned map, each value is associated with the element
of the keys
iterable at the same iteration positionexpectedSize
- the expected size of the returned map@Nonnull HashByteShortMap newUpdatableMap(@Nonnull Map<Byte,Short> map)
ByteShortMapFactory
map
.newUpdatableMap
in interface ByteShortMapFactory<HashByteShortMapFactory>
map
- the map whose mappings are to be placed in the returned mapmap
@Nonnull HashByteShortMap newUpdatableMap(@Nonnull Map<Byte,Short> map1, @Nonnull Map<Byte,Short> map2)
ByteShortMapFactory
map2
have priority over mappings from the map1
with
the same keys.newUpdatableMap
in interface ByteShortMapFactory<HashByteShortMapFactory>
map1
- the first map to mergemap2
- the second map to merge@Nonnull HashByteShortMap newUpdatableMap(@Nonnull Map<Byte,Short> map1, @Nonnull Map<Byte,Short> map2, @Nonnull Map<Byte,Short> map3)
ByteShortMapFactory
newUpdatableMap
in interface ByteShortMapFactory<HashByteShortMapFactory>
map1
- the first map to mergemap2
- the second map to mergemap3
- the third map to merge@Nonnull HashByteShortMap newUpdatableMap(@Nonnull Map<Byte,Short> map1, @Nonnull Map<Byte,Short> map2, @Nonnull Map<Byte,Short> map3, @Nonnull Map<Byte,Short> map4)
ByteShortMapFactory
newUpdatableMap
in interface ByteShortMapFactory<HashByteShortMapFactory>
map1
- the first map to mergemap2
- the second map to mergemap3
- the third map to mergemap4
- the fourth map to merge@Nonnull HashByteShortMap newUpdatableMap(@Nonnull Map<Byte,Short> map1, @Nonnull Map<Byte,Short> map2, @Nonnull Map<Byte,Short> map3, @Nonnull Map<Byte,Short> map4, @Nonnull Map<Byte,Short> map5)
ByteShortMapFactory
newUpdatableMap
in interface ByteShortMapFactory<HashByteShortMapFactory>
map1
- the first map to mergemap2
- the second map to mergemap3
- the third map to mergemap4
- the fourth map to mergemap5
- the fifth map to merge@Nonnull HashByteShortMap newUpdatableMap(@Nonnull Consumer<ByteShortConsumer> entriesSupplier)
ByteShortMapFactory
Example: TODO
newUpdatableMap
in interface ByteShortMapFactory<HashByteShortMapFactory>
entriesSupplier
- the function which supply mappings for the returned map via
the callback passed in@Nonnull HashByteShortMap newUpdatableMap(@Nonnull byte[] keys, @Nonnull short[] values)
ByteShortMapFactory
keys
and values
arrays at the same index. If keys
array have
duplicate elements, value corresponding the key with the highest index is left
in the returned map.newUpdatableMap
in interface ByteShortMapFactory<HashByteShortMapFactory>
keys
- the keys of the returned mapvalues
- the values of the returned map, each value is associated with the element
of the keys
array at the same index@Nonnull HashByteShortMap newUpdatableMap(@Nonnull Byte[] keys, @Nonnull Short[] values)
ByteShortMapFactory
keys
and values
arrays at the same index. If keys
array have
duplicate elements, value corresponding the key with the highest index is left
in the returned map.newUpdatableMap
in interface ByteShortMapFactory<HashByteShortMapFactory>
keys
- the keys of the returned mapvalues
- the values of the returned map, each value is associated with the element
of the keys
array at the same index@Nonnull HashByteShortMap newUpdatableMap(@Nonnull Iterable<Byte> keys, @Nonnull Iterable<Short> values)
ByteShortMapFactory
keys
and values
iterables at the same iteration position. If keys
have duplicate elements, value corresponding the key appeared last in the iteration is left
in the returned map.newUpdatableMap
in interface ByteShortMapFactory<HashByteShortMapFactory>
keys
- the keys of the returned mapvalues
- the values of the returned map, each value is associated with the element
of the keys
iterable at the same iteration position@Nonnull HashByteShortMap newUpdatableMapOf(byte k1, short v1)
ByteShortMapFactory
newUpdatableMapOf
in interface ByteShortMapFactory<HashByteShortMapFactory>
k1
- the key of the sole mappingv1
- the value of the sole mapping@Nonnull HashByteShortMap newUpdatableMapOf(byte k1, short v1, byte k2, short v2)
ByteShortMapFactory
newUpdatableMapOf
in interface ByteShortMapFactory<HashByteShortMapFactory>
k1
- the key of the first mappingv1
- the value of the first mappingk2
- the key of the second mappingv2
- the value of the second mapping@Nonnull HashByteShortMap newUpdatableMapOf(byte k1, short v1, byte k2, short v2, byte k3, short v3)
ByteShortMapFactory
newUpdatableMapOf
in interface ByteShortMapFactory<HashByteShortMapFactory>
k1
- the key of the first mappingv1
- the value of the first mappingk2
- the key of the second mappingv2
- the value of the second mappingk3
- the key of the third mappingv3
- the value of the third mapping@Nonnull HashByteShortMap newUpdatableMapOf(byte k1, short v1, byte k2, short v2, byte k3, short v3, byte k4, short v4)
ByteShortMapFactory
newUpdatableMapOf
in interface ByteShortMapFactory<HashByteShortMapFactory>
k1
- the key of the first mappingv1
- the value of the first mappingk2
- the key of the second mappingv2
- the value of the second mappingk3
- the key of the third mappingv3
- the value of the third mappingk4
- the key of the fourth mappingv4
- the value of the fourth mapping@Nonnull HashByteShortMap newUpdatableMapOf(byte k1, short v1, byte k2, short v2, byte k3, short v3, byte k4, short v4, byte k5, short v5)
ByteShortMapFactory
newUpdatableMapOf
in interface ByteShortMapFactory<HashByteShortMapFactory>
k1
- the key of the first mappingv1
- the value of the first mappingk2
- the key of the second mappingv2
- the value of the second mappingk3
- the key of the third mappingv3
- the value of the third mappingk4
- the key of the fourth mappingv4
- the value of the fourth mappingk5
- the key of the fifth mappingv5
- the value of the fifth mapping@Nonnull HashByteShortMap newImmutableMap(@Nonnull Map<Byte,Short> map1, @Nonnull Map<Byte,Short> map2, int expectedSize)
ByteShortMapFactory
map2
have priority over mappings from the map1
with
the same keys.newImmutableMap
in interface ByteShortMapFactory<HashByteShortMapFactory>
map1
- the first map to mergemap2
- the second map to mergeexpectedSize
- the expected size of the returned map@Nonnull HashByteShortMap newImmutableMap(@Nonnull Map<Byte,Short> map1, @Nonnull Map<Byte,Short> map2, @Nonnull Map<Byte,Short> map3, int expectedSize)
ByteShortMapFactory
newImmutableMap
in interface ByteShortMapFactory<HashByteShortMapFactory>
map1
- the first map to mergemap2
- the second map to mergemap3
- the third map to mergeexpectedSize
- the expected size of the returned map@Nonnull HashByteShortMap newImmutableMap(@Nonnull Map<Byte,Short> map1, @Nonnull Map<Byte,Short> map2, @Nonnull Map<Byte,Short> map3, @Nonnull Map<Byte,Short> map4, int expectedSize)
ByteShortMapFactory
newImmutableMap
in interface ByteShortMapFactory<HashByteShortMapFactory>
map1
- the first map to mergemap2
- the second map to mergemap3
- the third map to mergemap4
- the fourth map to mergeexpectedSize
- the expected size of the returned map@Nonnull HashByteShortMap newImmutableMap(@Nonnull Map<Byte,Short> map1, @Nonnull Map<Byte,Short> map2, @Nonnull Map<Byte,Short> map3, @Nonnull Map<Byte,Short> map4, @Nonnull Map<Byte,Short> map5, int expectedSize)
ByteShortMapFactory
newImmutableMap
in interface ByteShortMapFactory<HashByteShortMapFactory>
map1
- the first map to mergemap2
- the second map to mergemap3
- the third map to mergemap4
- the fourth map to mergemap5
- the fifth map to mergeexpectedSize
- the expected size of the returned map@Nonnull HashByteShortMap newImmutableMap(@Nonnull Consumer<ByteShortConsumer> entriesSupplier, int expectedSize)
ByteShortMapFactory
Example: TODO
newImmutableMap
in interface ByteShortMapFactory<HashByteShortMapFactory>
entriesSupplier
- the function which supply mappings for the returned map via
the callback passed inexpectedSize
- the expected size of the returned map@Nonnull HashByteShortMap newImmutableMap(@Nonnull byte[] keys, @Nonnull short[] values, int expectedSize)
ByteShortMapFactory
keys
and values
arrays at the same index. If keys
array have
duplicate elements, value corresponding the key with the highest index is left
in the returned map.newImmutableMap
in interface ByteShortMapFactory<HashByteShortMapFactory>
keys
- the keys of the returned mapvalues
- the values of the returned map, each value is associated with the element
of the keys
array at the same indexexpectedSize
- the expected size of the returned map@Nonnull HashByteShortMap newImmutableMap(@Nonnull Byte[] keys, @Nonnull Short[] values, int expectedSize)
ByteShortMapFactory
keys
and values
arrays at the same index. If keys
array have
duplicate elements, value corresponding the key with the highest index is left
in the returned map.newImmutableMap
in interface ByteShortMapFactory<HashByteShortMapFactory>
keys
- the keys of the returned mapvalues
- the values of the returned map, each value is associated with the element
of the keys
array at the same indexexpectedSize
- the expected size of the returned map@Nonnull HashByteShortMap newImmutableMap(@Nonnull Iterable<Byte> keys, @Nonnull Iterable<Short> values, int expectedSize)
ByteShortMapFactory
keys
and values
iterables at the same iteration position. If keys
have duplicate elements, value corresponding the key appeared last in the iteration is left
in the returned map.newImmutableMap
in interface ByteShortMapFactory<HashByteShortMapFactory>
keys
- the keys of the returned mapvalues
- the values of the returned map, each value is associated with the element
of the keys
iterable at the same iteration positionexpectedSize
- the expected size of the returned map@Nonnull HashByteShortMap newImmutableMap(@Nonnull Map<Byte,Short> map)
ByteShortMapFactory
map
.newImmutableMap
in interface ByteShortMapFactory<HashByteShortMapFactory>
map
- the map whose mappings are to be placed in the returned mapmap
@Nonnull HashByteShortMap newImmutableMap(@Nonnull Map<Byte,Short> map1, @Nonnull Map<Byte,Short> map2)
ByteShortMapFactory
map2
have priority over mappings from the map1
with
the same keys.newImmutableMap
in interface ByteShortMapFactory<HashByteShortMapFactory>
map1
- the first map to mergemap2
- the second map to merge@Nonnull HashByteShortMap newImmutableMap(@Nonnull Map<Byte,Short> map1, @Nonnull Map<Byte,Short> map2, @Nonnull Map<Byte,Short> map3)
ByteShortMapFactory
newImmutableMap
in interface ByteShortMapFactory<HashByteShortMapFactory>
map1
- the first map to mergemap2
- the second map to mergemap3
- the third map to merge@Nonnull HashByteShortMap newImmutableMap(@Nonnull Map<Byte,Short> map1, @Nonnull Map<Byte,Short> map2, @Nonnull Map<Byte,Short> map3, @Nonnull Map<Byte,Short> map4)
ByteShortMapFactory
newImmutableMap
in interface ByteShortMapFactory<HashByteShortMapFactory>
map1
- the first map to mergemap2
- the second map to mergemap3
- the third map to mergemap4
- the fourth map to merge@Nonnull HashByteShortMap newImmutableMap(@Nonnull Map<Byte,Short> map1, @Nonnull Map<Byte,Short> map2, @Nonnull Map<Byte,Short> map3, @Nonnull Map<Byte,Short> map4, @Nonnull Map<Byte,Short> map5)
ByteShortMapFactory
newImmutableMap
in interface ByteShortMapFactory<HashByteShortMapFactory>
map1
- the first map to mergemap2
- the second map to mergemap3
- the third map to mergemap4
- the fourth map to mergemap5
- the fifth map to merge@Nonnull HashByteShortMap newImmutableMap(@Nonnull Consumer<ByteShortConsumer> entriesSupplier)
ByteShortMapFactory
Example: TODO
newImmutableMap
in interface ByteShortMapFactory<HashByteShortMapFactory>
entriesSupplier
- the function which supply mappings for the returned map via
the callback passed in@Nonnull HashByteShortMap newImmutableMap(@Nonnull byte[] keys, @Nonnull short[] values)
ByteShortMapFactory
keys
and values
arrays at the same index. If keys
array have
duplicate elements, value corresponding the key with the highest index is left
in the returned map.newImmutableMap
in interface ByteShortMapFactory<HashByteShortMapFactory>
keys
- the keys of the returned mapvalues
- the values of the returned map, each value is associated with the element
of the keys
array at the same index@Nonnull HashByteShortMap newImmutableMap(@Nonnull Byte[] keys, @Nonnull Short[] values)
ByteShortMapFactory
keys
and values
arrays at the same index. If keys
array have
duplicate elements, value corresponding the key with the highest index is left
in the returned map.newImmutableMap
in interface ByteShortMapFactory<HashByteShortMapFactory>
keys
- the keys of the returned mapvalues
- the values of the returned map, each value is associated with the element
of the keys
array at the same index@Nonnull HashByteShortMap newImmutableMap(@Nonnull Iterable<Byte> keys, @Nonnull Iterable<Short> values)
ByteShortMapFactory
keys
and values
iterables at the same iteration position. If keys
have duplicate elements, value corresponding the key appeared last in the iteration is left
in the returned map.newImmutableMap
in interface ByteShortMapFactory<HashByteShortMapFactory>
keys
- the keys of the returned mapvalues
- the values of the returned map, each value is associated with the element
of the keys
iterable at the same iteration position@Nonnull HashByteShortMap newImmutableMapOf(byte k1, short v1)
ByteShortMapFactory
newImmutableMapOf
in interface ByteShortMapFactory<HashByteShortMapFactory>
k1
- the key of the sole mappingv1
- the value of the sole mapping@Nonnull HashByteShortMap newImmutableMapOf(byte k1, short v1, byte k2, short v2)
ByteShortMapFactory
newImmutableMapOf
in interface ByteShortMapFactory<HashByteShortMapFactory>
k1
- the key of the first mappingv1
- the value of the first mappingk2
- the key of the second mappingv2
- the value of the second mapping@Nonnull HashByteShortMap newImmutableMapOf(byte k1, short v1, byte k2, short v2, byte k3, short v3)
ByteShortMapFactory
newImmutableMapOf
in interface ByteShortMapFactory<HashByteShortMapFactory>
k1
- the key of the first mappingv1
- the value of the first mappingk2
- the key of the second mappingv2
- the value of the second mappingk3
- the key of the third mappingv3
- the value of the third mapping@Nonnull HashByteShortMap newImmutableMapOf(byte k1, short v1, byte k2, short v2, byte k3, short v3, byte k4, short v4)
ByteShortMapFactory
newImmutableMapOf
in interface ByteShortMapFactory<HashByteShortMapFactory>
k1
- the key of the first mappingv1
- the value of the first mappingk2
- the key of the second mappingv2
- the value of the second mappingk3
- the key of the third mappingv3
- the value of the third mappingk4
- the key of the fourth mappingv4
- the value of the fourth mapping@Nonnull HashByteShortMap newImmutableMapOf(byte k1, short v1, byte k2, short v2, byte k3, short v3, byte k4, short v4, byte k5, short v5)
ByteShortMapFactory
newImmutableMapOf
in interface ByteShortMapFactory<HashByteShortMapFactory>
k1
- the key of the first mappingv1
- the value of the first mappingk2
- the key of the second mappingv2
- the value of the second mappingk3
- the key of the third mappingv3
- the value of the third mappingk4
- the key of the fourth mappingv4
- the value of the fourth mappingk5
- the key of the fifth mappingv5
- the value of the fifth mapping