public interface HashFloatLongMapFactory extends FloatLongMapFactory<HashFloatLongMapFactory>, HashContainerFactory<HashFloatLongMapFactory>
HashFloatLongMap
s.Modifier and Type | Method and Description |
---|---|
HashFloatLongMap |
newImmutableMap(Consumer<FloatLongConsumer> entriesSupplier)
Constructs a new immutable map filled with mappings consumed by the callback within the given
closure.
|
HashFloatLongMap |
newImmutableMap(Consumer<FloatLongConsumer> entriesSupplier,
int expectedSize)
Constructs a new immutable map filled with mappings consumed by the callback within the given
closure.
|
HashFloatLongMap |
newImmutableMap(float[] keys,
long[] values)
Constructs a new immutable map with the given mappings, i.
|
HashFloatLongMap |
newImmutableMap(Float[] keys,
Long[] values)
Constructs a new immutable map with the given mappings, i.
|
HashFloatLongMap |
newImmutableMap(float[] keys,
long[] values,
int expectedSize)
Constructs a new immutable map with the given mappings, i.
|
HashFloatLongMap |
newImmutableMap(Float[] keys,
Long[] values,
int expectedSize)
Constructs a new immutable map with the given mappings, i.
|
HashFloatLongMap |
newImmutableMap(Iterable<Float> keys,
Iterable<Long> values)
Constructs a new immutable map with the given mappings, i.
|
HashFloatLongMap |
newImmutableMap(Iterable<Float> keys,
Iterable<Long> values,
int expectedSize)
Constructs a new immutable map with the given mappings, i.
|
HashFloatLongMap |
newImmutableMap(Map<Float,Long> map)
Constructs a new immutable map with the same mappings as the specified
map . |
HashFloatLongMap |
newImmutableMap(Map<Float,Long> map1,
Map<Float,Long> map2)
Constructs a new immutable map which merge the mappings of the specified maps.
|
HashFloatLongMap |
newImmutableMap(Map<Float,Long> map1,
Map<Float,Long> map2,
int expectedSize)
Constructs a new immutable map which merge the mappings of the specified maps.
|
HashFloatLongMap |
newImmutableMap(Map<Float,Long> map1,
Map<Float,Long> map2,
Map<Float,Long> map3)
Constructs a new immutable map which merge the mappings of the specified maps.
|
HashFloatLongMap |
newImmutableMap(Map<Float,Long> map1,
Map<Float,Long> map2,
Map<Float,Long> map3,
int expectedSize)
Constructs a new immutable map which merge the mappings of the specified maps.
|
HashFloatLongMap |
newImmutableMap(Map<Float,Long> map1,
Map<Float,Long> map2,
Map<Float,Long> map3,
Map<Float,Long> map4)
Constructs a new immutable map which merge the mappings of the specified maps.
|
HashFloatLongMap |
newImmutableMap(Map<Float,Long> map1,
Map<Float,Long> map2,
Map<Float,Long> map3,
Map<Float,Long> map4,
int expectedSize)
Constructs a new immutable map which merge the mappings of the specified maps.
|
HashFloatLongMap |
newImmutableMap(Map<Float,Long> map1,
Map<Float,Long> map2,
Map<Float,Long> map3,
Map<Float,Long> map4,
Map<Float,Long> map5)
Constructs a new immutable map which merge the mappings of the specified maps.
|
HashFloatLongMap |
newImmutableMap(Map<Float,Long> map1,
Map<Float,Long> map2,
Map<Float,Long> map3,
Map<Float,Long> map4,
Map<Float,Long> map5,
int expectedSize)
Constructs a new immutable map which merge the mappings of the specified maps.
|
HashFloatLongMap |
newImmutableMapOf(float k1,
long v1)
Constructs a new immutable map of the single specified mapping.
|
HashFloatLongMap |
newImmutableMapOf(float k1,
long v1,
float k2,
long v2)
Constructs a new immutable map of the two specified mappings.
|
HashFloatLongMap |
newImmutableMapOf(float k1,
long v1,
float k2,
long v2,
float k3,
long v3)
Constructs a new immutable map of the three specified mappings.
|
HashFloatLongMap |
newImmutableMapOf(float k1,
long v1,
float k2,
long v2,
float k3,
long v3,
float k4,
long v4)
Constructs a new immutable map of the four specified mappings.
|
HashFloatLongMap |
newImmutableMapOf(float k1,
long v1,
float k2,
long v2,
float k3,
long v3,
float k4,
long v4,
float k5,
long v5)
Constructs a new immutable map of the five specified mappings.
|
HashFloatLongMap |
newMutableMap()
Constructs a new empty mutable map of the default expected size.
|
HashFloatLongMap |
newMutableMap(Consumer<FloatLongConsumer> entriesSupplier)
Constructs a new mutable map filled with mappings consumed by the callback within the given
closure.
|
HashFloatLongMap |
newMutableMap(Consumer<FloatLongConsumer> entriesSupplier,
int expectedSize)
Constructs a new mutable map filled with mappings consumed by the callback within the given
closure.
|
HashFloatLongMap |
newMutableMap(float[] keys,
long[] values)
Constructs a new mutable map with the given mappings, i.
|
HashFloatLongMap |
newMutableMap(Float[] keys,
Long[] values)
Constructs a new mutable map with the given mappings, i.
|
HashFloatLongMap |
newMutableMap(float[] keys,
long[] values,
int expectedSize)
Constructs a new mutable map with the given mappings, i.
|
HashFloatLongMap |
newMutableMap(Float[] keys,
Long[] values,
int expectedSize)
Constructs a new mutable map with the given mappings, i.
|
HashFloatLongMap |
newMutableMap(int expectedSize)
Constructs a new empty mutable map of the given expected size.
|
HashFloatLongMap |
newMutableMap(Iterable<Float> keys,
Iterable<Long> values)
Constructs a new mutable map with the given mappings, i.
|
HashFloatLongMap |
newMutableMap(Iterable<Float> keys,
Iterable<Long> values,
int expectedSize)
Constructs a new mutable map with the given mappings, i.
|
HashFloatLongMap |
newMutableMap(Map<Float,Long> map)
Constructs a new mutable map with the same mappings as the specified
map . |
HashFloatLongMap |
newMutableMap(Map<Float,Long> map1,
Map<Float,Long> map2)
Constructs a new mutable map which merge the mappings of the specified maps.
|
HashFloatLongMap |
newMutableMap(Map<Float,Long> map1,
Map<Float,Long> map2,
int expectedSize)
Constructs a new mutable map which merge the mappings of the specified maps.
|
HashFloatLongMap |
newMutableMap(Map<Float,Long> map1,
Map<Float,Long> map2,
Map<Float,Long> map3)
Constructs a new mutable map which merge the mappings of the specified maps.
|
HashFloatLongMap |
newMutableMap(Map<Float,Long> map1,
Map<Float,Long> map2,
Map<Float,Long> map3,
int expectedSize)
Constructs a new mutable map which merge the mappings of the specified maps.
|
HashFloatLongMap |
newMutableMap(Map<Float,Long> map1,
Map<Float,Long> map2,
Map<Float,Long> map3,
Map<Float,Long> map4)
Constructs a new mutable map which merge the mappings of the specified maps.
|
HashFloatLongMap |
newMutableMap(Map<Float,Long> map1,
Map<Float,Long> map2,
Map<Float,Long> map3,
Map<Float,Long> map4,
int expectedSize)
Constructs a new mutable map which merge the mappings of the specified maps.
|
HashFloatLongMap |
newMutableMap(Map<Float,Long> map1,
Map<Float,Long> map2,
Map<Float,Long> map3,
Map<Float,Long> map4,
Map<Float,Long> map5)
Constructs a new mutable map which merge the mappings of the specified maps.
|
HashFloatLongMap |
newMutableMap(Map<Float,Long> map1,
Map<Float,Long> map2,
Map<Float,Long> map3,
Map<Float,Long> map4,
Map<Float,Long> map5,
int expectedSize)
Constructs a new mutable map which merge the mappings of the specified maps.
|
HashFloatLongMap |
newMutableMapOf(float k1,
long v1)
Constructs a new mutable map of the single specified mapping.
|
HashFloatLongMap |
newMutableMapOf(float k1,
long v1,
float k2,
long v2)
Constructs a new mutable map of the two specified mappings.
|
HashFloatLongMap |
newMutableMapOf(float k1,
long v1,
float k2,
long v2,
float k3,
long v3)
Constructs a new mutable map of the three specified mappings.
|
HashFloatLongMap |
newMutableMapOf(float k1,
long v1,
float k2,
long v2,
float k3,
long v3,
float k4,
long v4)
Constructs a new mutable map of the four specified mappings.
|
HashFloatLongMap |
newMutableMapOf(float k1,
long v1,
float k2,
long v2,
float k3,
long v3,
float k4,
long v4,
float k5,
long v5)
Constructs a new mutable map of the five specified mappings.
|
HashFloatLongMap |
newUpdatableMap()
Constructs a new empty updatable map of the default expected size.
|
HashFloatLongMap |
newUpdatableMap(Consumer<FloatLongConsumer> entriesSupplier)
Constructs a new updatable map filled with mappings consumed by the callback within the given
closure.
|
HashFloatLongMap |
newUpdatableMap(Consumer<FloatLongConsumer> entriesSupplier,
int expectedSize)
Constructs a new updatable map filled with mappings consumed by the callback within the given
closure.
|
HashFloatLongMap |
newUpdatableMap(float[] keys,
long[] values)
Constructs a new updatable map with the given mappings, i.
|
HashFloatLongMap |
newUpdatableMap(Float[] keys,
Long[] values)
Constructs a new updatable map with the given mappings, i.
|
HashFloatLongMap |
newUpdatableMap(float[] keys,
long[] values,
int expectedSize)
Constructs a new updatable map with the given mappings, i.
|
HashFloatLongMap |
newUpdatableMap(Float[] keys,
Long[] values,
int expectedSize)
Constructs a new updatable map with the given mappings, i.
|
HashFloatLongMap |
newUpdatableMap(int expectedSize)
Constructs a new empty updatable map of the given expected size.
|
HashFloatLongMap |
newUpdatableMap(Iterable<Float> keys,
Iterable<Long> values)
Constructs a new updatable map with the given mappings, i.
|
HashFloatLongMap |
newUpdatableMap(Iterable<Float> keys,
Iterable<Long> values,
int expectedSize)
Constructs a new updatable map with the given mappings, i.
|
HashFloatLongMap |
newUpdatableMap(Map<Float,Long> map)
Constructs a new updatable map with the same mappings as the specified
map . |
HashFloatLongMap |
newUpdatableMap(Map<Float,Long> map1,
Map<Float,Long> map2)
Constructs a new updatable map which merge the mappings of the specified maps.
|
HashFloatLongMap |
newUpdatableMap(Map<Float,Long> map1,
Map<Float,Long> map2,
int expectedSize)
Constructs a new updatable map which merge the mappings of the specified maps.
|
HashFloatLongMap |
newUpdatableMap(Map<Float,Long> map1,
Map<Float,Long> map2,
Map<Float,Long> map3)
Constructs a new updatable map which merge the mappings of the specified maps.
|
HashFloatLongMap |
newUpdatableMap(Map<Float,Long> map1,
Map<Float,Long> map2,
Map<Float,Long> map3,
int expectedSize)
Constructs a new updatable map which merge the mappings of the specified maps.
|
HashFloatLongMap |
newUpdatableMap(Map<Float,Long> map1,
Map<Float,Long> map2,
Map<Float,Long> map3,
Map<Float,Long> map4)
Constructs a new updatable map which merge the mappings of the specified maps.
|
HashFloatLongMap |
newUpdatableMap(Map<Float,Long> map1,
Map<Float,Long> map2,
Map<Float,Long> map3,
Map<Float,Long> map4,
int expectedSize)
Constructs a new updatable map which merge the mappings of the specified maps.
|
HashFloatLongMap |
newUpdatableMap(Map<Float,Long> map1,
Map<Float,Long> map2,
Map<Float,Long> map3,
Map<Float,Long> map4,
Map<Float,Long> map5)
Constructs a new updatable map which merge the mappings of the specified maps.
|
HashFloatLongMap |
newUpdatableMap(Map<Float,Long> map1,
Map<Float,Long> map2,
Map<Float,Long> map3,
Map<Float,Long> map4,
Map<Float,Long> map5,
int expectedSize)
Constructs a new updatable map which merge the mappings of the specified maps.
|
HashFloatLongMap |
newUpdatableMapOf(float k1,
long v1)
Constructs a new updatable map of the single specified mapping.
|
HashFloatLongMap |
newUpdatableMapOf(float k1,
long v1,
float k2,
long v2)
Constructs a new updatable map of the two specified mappings.
|
HashFloatLongMap |
newUpdatableMapOf(float k1,
long v1,
float k2,
long v2,
float k3,
long v3)
Constructs a new updatable map of the three specified mappings.
|
HashFloatLongMap |
newUpdatableMapOf(float k1,
long v1,
float k2,
long v2,
float k3,
long v3,
float k4,
long v4)
Constructs a new updatable map of the four specified mappings.
|
HashFloatLongMap |
newUpdatableMapOf(float k1,
long v1,
float k2,
long v2,
float k3,
long v3,
float k4,
long v4,
float k5,
long v5)
Constructs a new updatable map of the five specified mappings.
|
getDefaultValue, withDefaultValue
getHashConfig, withHashConfig
getDefaultExpectedSize, withDefaultExpectedSize
@Nonnull HashFloatLongMap newMutableMap()
FloatLongMapFactory
newMutableMap
in interface FloatLongMapFactory<HashFloatLongMapFactory>
@Nonnull HashFloatLongMap newMutableMap(int expectedSize)
FloatLongMapFactory
newMutableMap
in interface FloatLongMapFactory<HashFloatLongMapFactory>
expectedSize
- the expected size of the returned map@Nonnull HashFloatLongMap newMutableMap(@Nonnull Map<Float,Long> map1, @Nonnull Map<Float,Long> map2, int expectedSize)
FloatLongMapFactory
map2
have priority over mappings from the map1
with
the same keys.newMutableMap
in interface FloatLongMapFactory<HashFloatLongMapFactory>
map1
- the first map to mergemap2
- the second map to mergeexpectedSize
- the expected size of the returned map@Nonnull HashFloatLongMap newMutableMap(@Nonnull Map<Float,Long> map1, @Nonnull Map<Float,Long> map2, @Nonnull Map<Float,Long> map3, int expectedSize)
FloatLongMapFactory
newMutableMap
in interface FloatLongMapFactory<HashFloatLongMapFactory>
map1
- the first map to mergemap2
- the second map to mergemap3
- the third map to mergeexpectedSize
- the expected size of the returned map@Nonnull HashFloatLongMap newMutableMap(@Nonnull Map<Float,Long> map1, @Nonnull Map<Float,Long> map2, @Nonnull Map<Float,Long> map3, @Nonnull Map<Float,Long> map4, int expectedSize)
FloatLongMapFactory
newMutableMap
in interface FloatLongMapFactory<HashFloatLongMapFactory>
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 HashFloatLongMap newMutableMap(@Nonnull Map<Float,Long> map1, @Nonnull Map<Float,Long> map2, @Nonnull Map<Float,Long> map3, @Nonnull Map<Float,Long> map4, @Nonnull Map<Float,Long> map5, int expectedSize)
FloatLongMapFactory
newMutableMap
in interface FloatLongMapFactory<HashFloatLongMapFactory>
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 HashFloatLongMap newMutableMap(@Nonnull Consumer<FloatLongConsumer> entriesSupplier, int expectedSize)
FloatLongMapFactory
Example: TODO
newMutableMap
in interface FloatLongMapFactory<HashFloatLongMapFactory>
entriesSupplier
- the function which supply mappings for the returned map via
the callback passed inexpectedSize
- the expected size of the returned map@Nonnull HashFloatLongMap newMutableMap(@Nonnull float[] keys, @Nonnull long[] values, int expectedSize)
FloatLongMapFactory
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 FloatLongMapFactory<HashFloatLongMapFactory>
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 HashFloatLongMap newMutableMap(@Nonnull Float[] keys, @Nonnull Long[] values, int expectedSize)
FloatLongMapFactory
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 FloatLongMapFactory<HashFloatLongMapFactory>
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 HashFloatLongMap newMutableMap(@Nonnull Iterable<Float> keys, @Nonnull Iterable<Long> values, int expectedSize)
FloatLongMapFactory
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 FloatLongMapFactory<HashFloatLongMapFactory>
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 HashFloatLongMap newMutableMap(@Nonnull Map<Float,Long> map)
FloatLongMapFactory
map
.newMutableMap
in interface FloatLongMapFactory<HashFloatLongMapFactory>
map
- the map whose mappings are to be placed in the returned mapmap
@Nonnull HashFloatLongMap newMutableMap(@Nonnull Map<Float,Long> map1, @Nonnull Map<Float,Long> map2)
FloatLongMapFactory
map2
have priority over mappings from the map1
with
the same keys.newMutableMap
in interface FloatLongMapFactory<HashFloatLongMapFactory>
map1
- the first map to mergemap2
- the second map to merge@Nonnull HashFloatLongMap newMutableMap(@Nonnull Map<Float,Long> map1, @Nonnull Map<Float,Long> map2, @Nonnull Map<Float,Long> map3)
FloatLongMapFactory
newMutableMap
in interface FloatLongMapFactory<HashFloatLongMapFactory>
map1
- the first map to mergemap2
- the second map to mergemap3
- the third map to merge@Nonnull HashFloatLongMap newMutableMap(@Nonnull Map<Float,Long> map1, @Nonnull Map<Float,Long> map2, @Nonnull Map<Float,Long> map3, @Nonnull Map<Float,Long> map4)
FloatLongMapFactory
newMutableMap
in interface FloatLongMapFactory<HashFloatLongMapFactory>
map1
- the first map to mergemap2
- the second map to mergemap3
- the third map to mergemap4
- the fourth map to merge@Nonnull HashFloatLongMap newMutableMap(@Nonnull Map<Float,Long> map1, @Nonnull Map<Float,Long> map2, @Nonnull Map<Float,Long> map3, @Nonnull Map<Float,Long> map4, @Nonnull Map<Float,Long> map5)
FloatLongMapFactory
newMutableMap
in interface FloatLongMapFactory<HashFloatLongMapFactory>
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 HashFloatLongMap newMutableMap(@Nonnull Consumer<FloatLongConsumer> entriesSupplier)
FloatLongMapFactory
Example: TODO
newMutableMap
in interface FloatLongMapFactory<HashFloatLongMapFactory>
entriesSupplier
- the function which supply mappings for the returned map via
the callback passed in@Nonnull HashFloatLongMap newMutableMap(@Nonnull float[] keys, @Nonnull long[] values)
FloatLongMapFactory
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 FloatLongMapFactory<HashFloatLongMapFactory>
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 HashFloatLongMap newMutableMap(@Nonnull Float[] keys, @Nonnull Long[] values)
FloatLongMapFactory
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 FloatLongMapFactory<HashFloatLongMapFactory>
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 HashFloatLongMap newMutableMap(@Nonnull Iterable<Float> keys, @Nonnull Iterable<Long> values)
FloatLongMapFactory
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 FloatLongMapFactory<HashFloatLongMapFactory>
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 HashFloatLongMap newMutableMapOf(float k1, long v1)
FloatLongMapFactory
newMutableMapOf
in interface FloatLongMapFactory<HashFloatLongMapFactory>
k1
- the key of the sole mappingv1
- the value of the sole mapping@Nonnull HashFloatLongMap newMutableMapOf(float k1, long v1, float k2, long v2)
FloatLongMapFactory
newMutableMapOf
in interface FloatLongMapFactory<HashFloatLongMapFactory>
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 HashFloatLongMap newMutableMapOf(float k1, long v1, float k2, long v2, float k3, long v3)
FloatLongMapFactory
newMutableMapOf
in interface FloatLongMapFactory<HashFloatLongMapFactory>
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 HashFloatLongMap newMutableMapOf(float k1, long v1, float k2, long v2, float k3, long v3, float k4, long v4)
FloatLongMapFactory
newMutableMapOf
in interface FloatLongMapFactory<HashFloatLongMapFactory>
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 HashFloatLongMap newMutableMapOf(float k1, long v1, float k2, long v2, float k3, long v3, float k4, long v4, float k5, long v5)
FloatLongMapFactory
newMutableMapOf
in interface FloatLongMapFactory<HashFloatLongMapFactory>
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 HashFloatLongMap newUpdatableMap()
FloatLongMapFactory
newUpdatableMap
in interface FloatLongMapFactory<HashFloatLongMapFactory>
@Nonnull HashFloatLongMap newUpdatableMap(int expectedSize)
FloatLongMapFactory
newUpdatableMap
in interface FloatLongMapFactory<HashFloatLongMapFactory>
expectedSize
- the expected size of the returned map@Nonnull HashFloatLongMap newUpdatableMap(@Nonnull Map<Float,Long> map1, @Nonnull Map<Float,Long> map2, int expectedSize)
FloatLongMapFactory
map2
have priority over mappings from the map1
with
the same keys.newUpdatableMap
in interface FloatLongMapFactory<HashFloatLongMapFactory>
map1
- the first map to mergemap2
- the second map to mergeexpectedSize
- the expected size of the returned map@Nonnull HashFloatLongMap newUpdatableMap(@Nonnull Map<Float,Long> map1, @Nonnull Map<Float,Long> map2, @Nonnull Map<Float,Long> map3, int expectedSize)
FloatLongMapFactory
newUpdatableMap
in interface FloatLongMapFactory<HashFloatLongMapFactory>
map1
- the first map to mergemap2
- the second map to mergemap3
- the third map to mergeexpectedSize
- the expected size of the returned map@Nonnull HashFloatLongMap newUpdatableMap(@Nonnull Map<Float,Long> map1, @Nonnull Map<Float,Long> map2, @Nonnull Map<Float,Long> map3, @Nonnull Map<Float,Long> map4, int expectedSize)
FloatLongMapFactory
newUpdatableMap
in interface FloatLongMapFactory<HashFloatLongMapFactory>
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 HashFloatLongMap newUpdatableMap(@Nonnull Map<Float,Long> map1, @Nonnull Map<Float,Long> map2, @Nonnull Map<Float,Long> map3, @Nonnull Map<Float,Long> map4, @Nonnull Map<Float,Long> map5, int expectedSize)
FloatLongMapFactory
newUpdatableMap
in interface FloatLongMapFactory<HashFloatLongMapFactory>
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 HashFloatLongMap newUpdatableMap(@Nonnull Consumer<FloatLongConsumer> entriesSupplier, int expectedSize)
FloatLongMapFactory
Example: TODO
newUpdatableMap
in interface FloatLongMapFactory<HashFloatLongMapFactory>
entriesSupplier
- the function which supply mappings for the returned map via
the callback passed inexpectedSize
- the expected size of the returned map@Nonnull HashFloatLongMap newUpdatableMap(@Nonnull float[] keys, @Nonnull long[] values, int expectedSize)
FloatLongMapFactory
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 FloatLongMapFactory<HashFloatLongMapFactory>
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 HashFloatLongMap newUpdatableMap(@Nonnull Float[] keys, @Nonnull Long[] values, int expectedSize)
FloatLongMapFactory
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 FloatLongMapFactory<HashFloatLongMapFactory>
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 HashFloatLongMap newUpdatableMap(@Nonnull Iterable<Float> keys, @Nonnull Iterable<Long> values, int expectedSize)
FloatLongMapFactory
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 FloatLongMapFactory<HashFloatLongMapFactory>
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 HashFloatLongMap newUpdatableMap(@Nonnull Map<Float,Long> map)
FloatLongMapFactory
map
.newUpdatableMap
in interface FloatLongMapFactory<HashFloatLongMapFactory>
map
- the map whose mappings are to be placed in the returned mapmap
@Nonnull HashFloatLongMap newUpdatableMap(@Nonnull Map<Float,Long> map1, @Nonnull Map<Float,Long> map2)
FloatLongMapFactory
map2
have priority over mappings from the map1
with
the same keys.newUpdatableMap
in interface FloatLongMapFactory<HashFloatLongMapFactory>
map1
- the first map to mergemap2
- the second map to merge@Nonnull HashFloatLongMap newUpdatableMap(@Nonnull Map<Float,Long> map1, @Nonnull Map<Float,Long> map2, @Nonnull Map<Float,Long> map3)
FloatLongMapFactory
newUpdatableMap
in interface FloatLongMapFactory<HashFloatLongMapFactory>
map1
- the first map to mergemap2
- the second map to mergemap3
- the third map to merge@Nonnull HashFloatLongMap newUpdatableMap(@Nonnull Map<Float,Long> map1, @Nonnull Map<Float,Long> map2, @Nonnull Map<Float,Long> map3, @Nonnull Map<Float,Long> map4)
FloatLongMapFactory
newUpdatableMap
in interface FloatLongMapFactory<HashFloatLongMapFactory>
map1
- the first map to mergemap2
- the second map to mergemap3
- the third map to mergemap4
- the fourth map to merge@Nonnull HashFloatLongMap newUpdatableMap(@Nonnull Map<Float,Long> map1, @Nonnull Map<Float,Long> map2, @Nonnull Map<Float,Long> map3, @Nonnull Map<Float,Long> map4, @Nonnull Map<Float,Long> map5)
FloatLongMapFactory
newUpdatableMap
in interface FloatLongMapFactory<HashFloatLongMapFactory>
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 HashFloatLongMap newUpdatableMap(@Nonnull Consumer<FloatLongConsumer> entriesSupplier)
FloatLongMapFactory
Example: TODO
newUpdatableMap
in interface FloatLongMapFactory<HashFloatLongMapFactory>
entriesSupplier
- the function which supply mappings for the returned map via
the callback passed in@Nonnull HashFloatLongMap newUpdatableMap(@Nonnull float[] keys, @Nonnull long[] values)
FloatLongMapFactory
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 FloatLongMapFactory<HashFloatLongMapFactory>
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 HashFloatLongMap newUpdatableMap(@Nonnull Float[] keys, @Nonnull Long[] values)
FloatLongMapFactory
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 FloatLongMapFactory<HashFloatLongMapFactory>
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 HashFloatLongMap newUpdatableMap(@Nonnull Iterable<Float> keys, @Nonnull Iterable<Long> values)
FloatLongMapFactory
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 FloatLongMapFactory<HashFloatLongMapFactory>
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 HashFloatLongMap newUpdatableMapOf(float k1, long v1)
FloatLongMapFactory
newUpdatableMapOf
in interface FloatLongMapFactory<HashFloatLongMapFactory>
k1
- the key of the sole mappingv1
- the value of the sole mapping@Nonnull HashFloatLongMap newUpdatableMapOf(float k1, long v1, float k2, long v2)
FloatLongMapFactory
newUpdatableMapOf
in interface FloatLongMapFactory<HashFloatLongMapFactory>
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 HashFloatLongMap newUpdatableMapOf(float k1, long v1, float k2, long v2, float k3, long v3)
FloatLongMapFactory
newUpdatableMapOf
in interface FloatLongMapFactory<HashFloatLongMapFactory>
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 HashFloatLongMap newUpdatableMapOf(float k1, long v1, float k2, long v2, float k3, long v3, float k4, long v4)
FloatLongMapFactory
newUpdatableMapOf
in interface FloatLongMapFactory<HashFloatLongMapFactory>
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 HashFloatLongMap newUpdatableMapOf(float k1, long v1, float k2, long v2, float k3, long v3, float k4, long v4, float k5, long v5)
FloatLongMapFactory
newUpdatableMapOf
in interface FloatLongMapFactory<HashFloatLongMapFactory>
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 HashFloatLongMap newImmutableMap(@Nonnull Map<Float,Long> map1, @Nonnull Map<Float,Long> map2, int expectedSize)
FloatLongMapFactory
map2
have priority over mappings from the map1
with
the same keys.newImmutableMap
in interface FloatLongMapFactory<HashFloatLongMapFactory>
map1
- the first map to mergemap2
- the second map to mergeexpectedSize
- the expected size of the returned map@Nonnull HashFloatLongMap newImmutableMap(@Nonnull Map<Float,Long> map1, @Nonnull Map<Float,Long> map2, @Nonnull Map<Float,Long> map3, int expectedSize)
FloatLongMapFactory
newImmutableMap
in interface FloatLongMapFactory<HashFloatLongMapFactory>
map1
- the first map to mergemap2
- the second map to mergemap3
- the third map to mergeexpectedSize
- the expected size of the returned map@Nonnull HashFloatLongMap newImmutableMap(@Nonnull Map<Float,Long> map1, @Nonnull Map<Float,Long> map2, @Nonnull Map<Float,Long> map3, @Nonnull Map<Float,Long> map4, int expectedSize)
FloatLongMapFactory
newImmutableMap
in interface FloatLongMapFactory<HashFloatLongMapFactory>
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 HashFloatLongMap newImmutableMap(@Nonnull Map<Float,Long> map1, @Nonnull Map<Float,Long> map2, @Nonnull Map<Float,Long> map3, @Nonnull Map<Float,Long> map4, @Nonnull Map<Float,Long> map5, int expectedSize)
FloatLongMapFactory
newImmutableMap
in interface FloatLongMapFactory<HashFloatLongMapFactory>
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 HashFloatLongMap newImmutableMap(@Nonnull Consumer<FloatLongConsumer> entriesSupplier, int expectedSize)
FloatLongMapFactory
Example: TODO
newImmutableMap
in interface FloatLongMapFactory<HashFloatLongMapFactory>
entriesSupplier
- the function which supply mappings for the returned map via
the callback passed inexpectedSize
- the expected size of the returned map@Nonnull HashFloatLongMap newImmutableMap(@Nonnull float[] keys, @Nonnull long[] values, int expectedSize)
FloatLongMapFactory
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 FloatLongMapFactory<HashFloatLongMapFactory>
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 HashFloatLongMap newImmutableMap(@Nonnull Float[] keys, @Nonnull Long[] values, int expectedSize)
FloatLongMapFactory
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 FloatLongMapFactory<HashFloatLongMapFactory>
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 HashFloatLongMap newImmutableMap(@Nonnull Iterable<Float> keys, @Nonnull Iterable<Long> values, int expectedSize)
FloatLongMapFactory
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 FloatLongMapFactory<HashFloatLongMapFactory>
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 HashFloatLongMap newImmutableMap(@Nonnull Map<Float,Long> map)
FloatLongMapFactory
map
.newImmutableMap
in interface FloatLongMapFactory<HashFloatLongMapFactory>
map
- the map whose mappings are to be placed in the returned mapmap
@Nonnull HashFloatLongMap newImmutableMap(@Nonnull Map<Float,Long> map1, @Nonnull Map<Float,Long> map2)
FloatLongMapFactory
map2
have priority over mappings from the map1
with
the same keys.newImmutableMap
in interface FloatLongMapFactory<HashFloatLongMapFactory>
map1
- the first map to mergemap2
- the second map to merge@Nonnull HashFloatLongMap newImmutableMap(@Nonnull Map<Float,Long> map1, @Nonnull Map<Float,Long> map2, @Nonnull Map<Float,Long> map3)
FloatLongMapFactory
newImmutableMap
in interface FloatLongMapFactory<HashFloatLongMapFactory>
map1
- the first map to mergemap2
- the second map to mergemap3
- the third map to merge@Nonnull HashFloatLongMap newImmutableMap(@Nonnull Map<Float,Long> map1, @Nonnull Map<Float,Long> map2, @Nonnull Map<Float,Long> map3, @Nonnull Map<Float,Long> map4)
FloatLongMapFactory
newImmutableMap
in interface FloatLongMapFactory<HashFloatLongMapFactory>
map1
- the first map to mergemap2
- the second map to mergemap3
- the third map to mergemap4
- the fourth map to merge@Nonnull HashFloatLongMap newImmutableMap(@Nonnull Map<Float,Long> map1, @Nonnull Map<Float,Long> map2, @Nonnull Map<Float,Long> map3, @Nonnull Map<Float,Long> map4, @Nonnull Map<Float,Long> map5)
FloatLongMapFactory
newImmutableMap
in interface FloatLongMapFactory<HashFloatLongMapFactory>
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 HashFloatLongMap newImmutableMap(@Nonnull Consumer<FloatLongConsumer> entriesSupplier)
FloatLongMapFactory
Example: TODO
newImmutableMap
in interface FloatLongMapFactory<HashFloatLongMapFactory>
entriesSupplier
- the function which supply mappings for the returned map via
the callback passed in@Nonnull HashFloatLongMap newImmutableMap(@Nonnull float[] keys, @Nonnull long[] values)
FloatLongMapFactory
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 FloatLongMapFactory<HashFloatLongMapFactory>
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 HashFloatLongMap newImmutableMap(@Nonnull Float[] keys, @Nonnull Long[] values)
FloatLongMapFactory
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 FloatLongMapFactory<HashFloatLongMapFactory>
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 HashFloatLongMap newImmutableMap(@Nonnull Iterable<Float> keys, @Nonnull Iterable<Long> values)
FloatLongMapFactory
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 FloatLongMapFactory<HashFloatLongMapFactory>
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 HashFloatLongMap newImmutableMapOf(float k1, long v1)
FloatLongMapFactory
newImmutableMapOf
in interface FloatLongMapFactory<HashFloatLongMapFactory>
k1
- the key of the sole mappingv1
- the value of the sole mapping@Nonnull HashFloatLongMap newImmutableMapOf(float k1, long v1, float k2, long v2)
FloatLongMapFactory
newImmutableMapOf
in interface FloatLongMapFactory<HashFloatLongMapFactory>
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 HashFloatLongMap newImmutableMapOf(float k1, long v1, float k2, long v2, float k3, long v3)
FloatLongMapFactory
newImmutableMapOf
in interface FloatLongMapFactory<HashFloatLongMapFactory>
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 HashFloatLongMap newImmutableMapOf(float k1, long v1, float k2, long v2, float k3, long v3, float k4, long v4)
FloatLongMapFactory
newImmutableMapOf
in interface FloatLongMapFactory<HashFloatLongMapFactory>
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 HashFloatLongMap newImmutableMapOf(float k1, long v1, float k2, long v2, float k3, long v3, float k4, long v4, float k5, long v5)
FloatLongMapFactory
newImmutableMapOf
in interface FloatLongMapFactory<HashFloatLongMapFactory>
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