|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface HashByteCharMapFactory
An immutable factory of HashByteCharMaps.
HashByteCharMap,
HashByteCharMaps.getDefaultFactory(),
@KolobokeMap| Method Summary | |
|---|---|
HashByteCharMap |
newImmutableMap(byte[] keys,
char[] 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. |
HashByteCharMap |
newImmutableMap(byte[] keys,
char[] 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. |
HashByteCharMap |
newImmutableMap(Byte[] keys,
Character[] 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. |
HashByteCharMap |
newImmutableMap(Byte[] keys,
Character[] 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. |
HashByteCharMap |
newImmutableMap(Consumer<ByteCharConsumer> entriesSupplier)
Constructs a new immutable map filled with mappings consumed by the callback within the given closure. |
HashByteCharMap |
newImmutableMap(Consumer<ByteCharConsumer> entriesSupplier,
int expectedSize)
Constructs a new immutable map filled with mappings consumed by the callback within the given closure. |
HashByteCharMap |
newImmutableMap(Iterable<Byte> keys,
Iterable<Character> 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. |
HashByteCharMap |
newImmutableMap(Iterable<Byte> keys,
Iterable<Character> 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. |
HashByteCharMap |
newImmutableMap(Map<Byte,Character> map)
Constructs a new immutable map with the same mappings as the specified map. |
HashByteCharMap |
newImmutableMap(Map<Byte,Character> map1,
Map<Byte,Character> map2)
Constructs a new immutable map which merge the mappings of the specified maps. |
HashByteCharMap |
newImmutableMap(Map<Byte,Character> map1,
Map<Byte,Character> map2,
int expectedSize)
Constructs a new immutable map which merge the mappings of the specified maps. |
HashByteCharMap |
newImmutableMap(Map<Byte,Character> map1,
Map<Byte,Character> map2,
Map<Byte,Character> map3)
Constructs a new immutable map which merge the mappings of the specified maps. |
HashByteCharMap |
newImmutableMap(Map<Byte,Character> map1,
Map<Byte,Character> map2,
Map<Byte,Character> map3,
int expectedSize)
Constructs a new immutable map which merge the mappings of the specified maps. |
HashByteCharMap |
newImmutableMap(Map<Byte,Character> map1,
Map<Byte,Character> map2,
Map<Byte,Character> map3,
Map<Byte,Character> map4)
Constructs a new immutable map which merge the mappings of the specified maps. |
HashByteCharMap |
newImmutableMap(Map<Byte,Character> map1,
Map<Byte,Character> map2,
Map<Byte,Character> map3,
Map<Byte,Character> map4,
int expectedSize)
Constructs a new immutable map which merge the mappings of the specified maps. |
HashByteCharMap |
newImmutableMap(Map<Byte,Character> map1,
Map<Byte,Character> map2,
Map<Byte,Character> map3,
Map<Byte,Character> map4,
Map<Byte,Character> map5)
Constructs a new immutable map which merge the mappings of the specified maps. |
HashByteCharMap |
newImmutableMap(Map<Byte,Character> map1,
Map<Byte,Character> map2,
Map<Byte,Character> map3,
Map<Byte,Character> map4,
Map<Byte,Character> map5,
int expectedSize)
Constructs a new immutable map which merge the mappings of the specified maps. |
HashByteCharMap |
newImmutableMapOf(byte k1,
char v1)
Constructs a new immutable map of the single specified mapping. |
HashByteCharMap |
newImmutableMapOf(byte k1,
char v1,
byte k2,
char v2)
Constructs a new immutable map of the two specified mappings. |
HashByteCharMap |
newImmutableMapOf(byte k1,
char v1,
byte k2,
char v2,
byte k3,
char v3)
Constructs a new immutable map of the three specified mappings. |
HashByteCharMap |
newImmutableMapOf(byte k1,
char v1,
byte k2,
char v2,
byte k3,
char v3,
byte k4,
char v4)
Constructs a new immutable map of the four specified mappings. |
HashByteCharMap |
newImmutableMapOf(byte k1,
char v1,
byte k2,
char v2,
byte k3,
char v3,
byte k4,
char v4,
byte k5,
char v5)
Constructs a new immutable map of the five specified mappings. |
HashByteCharMap |
newMutableMap()
Constructs a new empty mutable map of the default expected size. |
HashByteCharMap |
newMutableMap(byte[] keys,
char[] 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. |
HashByteCharMap |
newMutableMap(byte[] keys,
char[] 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. |
HashByteCharMap |
newMutableMap(Byte[] keys,
Character[] 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. |
HashByteCharMap |
newMutableMap(Byte[] keys,
Character[] 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. |
HashByteCharMap |
newMutableMap(Consumer<ByteCharConsumer> entriesSupplier)
Constructs a new mutable map filled with mappings consumed by the callback within the given closure. |
HashByteCharMap |
newMutableMap(Consumer<ByteCharConsumer> entriesSupplier,
int expectedSize)
Constructs a new mutable map filled with mappings consumed by the callback within the given closure. |
HashByteCharMap |
newMutableMap(int expectedSize)
Constructs a new empty mutable map of the given expected size. |
HashByteCharMap |
newMutableMap(Iterable<Byte> keys,
Iterable<Character> 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. |
HashByteCharMap |
newMutableMap(Iterable<Byte> keys,
Iterable<Character> 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. |
HashByteCharMap |
newMutableMap(Map<Byte,Character> map)
Constructs a new mutable map with the same mappings as the specified map. |
HashByteCharMap |
newMutableMap(Map<Byte,Character> map1,
Map<Byte,Character> map2)
Constructs a new mutable map which merge the mappings of the specified maps. |
HashByteCharMap |
newMutableMap(Map<Byte,Character> map1,
Map<Byte,Character> map2,
int expectedSize)
Constructs a new mutable map which merge the mappings of the specified maps. |
HashByteCharMap |
newMutableMap(Map<Byte,Character> map1,
Map<Byte,Character> map2,
Map<Byte,Character> map3)
Constructs a new mutable map which merge the mappings of the specified maps. |
HashByteCharMap |
newMutableMap(Map<Byte,Character> map1,
Map<Byte,Character> map2,
Map<Byte,Character> map3,
int expectedSize)
Constructs a new mutable map which merge the mappings of the specified maps. |
HashByteCharMap |
newMutableMap(Map<Byte,Character> map1,
Map<Byte,Character> map2,
Map<Byte,Character> map3,
Map<Byte,Character> map4)
Constructs a new mutable map which merge the mappings of the specified maps. |
HashByteCharMap |
newMutableMap(Map<Byte,Character> map1,
Map<Byte,Character> map2,
Map<Byte,Character> map3,
Map<Byte,Character> map4,
int expectedSize)
Constructs a new mutable map which merge the mappings of the specified maps. |
HashByteCharMap |
newMutableMap(Map<Byte,Character> map1,
Map<Byte,Character> map2,
Map<Byte,Character> map3,
Map<Byte,Character> map4,
Map<Byte,Character> map5)
Constructs a new mutable map which merge the mappings of the specified maps. |
HashByteCharMap |
newMutableMap(Map<Byte,Character> map1,
Map<Byte,Character> map2,
Map<Byte,Character> map3,
Map<Byte,Character> map4,
Map<Byte,Character> map5,
int expectedSize)
Constructs a new mutable map which merge the mappings of the specified maps. |
HashByteCharMap |
newMutableMapOf(byte k1,
char v1)
Constructs a new mutable map of the single specified mapping. |
HashByteCharMap |
newMutableMapOf(byte k1,
char v1,
byte k2,
char v2)
Constructs a new mutable map of the two specified mappings. |
HashByteCharMap |
newMutableMapOf(byte k1,
char v1,
byte k2,
char v2,
byte k3,
char v3)
Constructs a new mutable map of the three specified mappings. |
HashByteCharMap |
newMutableMapOf(byte k1,
char v1,
byte k2,
char v2,
byte k3,
char v3,
byte k4,
char v4)
Constructs a new mutable map of the four specified mappings. |
HashByteCharMap |
newMutableMapOf(byte k1,
char v1,
byte k2,
char v2,
byte k3,
char v3,
byte k4,
char v4,
byte k5,
char v5)
Constructs a new mutable map of the five specified mappings. |
HashByteCharMap |
newUpdatableMap()
Constructs a new empty updatable map of the default expected size. |
HashByteCharMap |
newUpdatableMap(byte[] keys,
char[] 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. |
HashByteCharMap |
newUpdatableMap(byte[] keys,
char[] 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. |
HashByteCharMap |
newUpdatableMap(Byte[] keys,
Character[] 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. |
HashByteCharMap |
newUpdatableMap(Byte[] keys,
Character[] 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. |
HashByteCharMap |
newUpdatableMap(Consumer<ByteCharConsumer> entriesSupplier)
Constructs a new updatable map filled with mappings consumed by the callback within the given closure. |
HashByteCharMap |
newUpdatableMap(Consumer<ByteCharConsumer> entriesSupplier,
int expectedSize)
Constructs a new updatable map filled with mappings consumed by the callback within the given closure. |
HashByteCharMap |
newUpdatableMap(int expectedSize)
Constructs a new empty updatable map of the given expected size. |
HashByteCharMap |
newUpdatableMap(Iterable<Byte> keys,
Iterable<Character> 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. |
HashByteCharMap |
newUpdatableMap(Iterable<Byte> keys,
Iterable<Character> 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. |
HashByteCharMap |
newUpdatableMap(Map<Byte,Character> map)
Constructs a new updatable map with the same mappings as the specified map. |
HashByteCharMap |
newUpdatableMap(Map<Byte,Character> map1,
Map<Byte,Character> map2)
Constructs a new updatable map which merge the mappings of the specified maps. |
HashByteCharMap |
newUpdatableMap(Map<Byte,Character> map1,
Map<Byte,Character> map2,
int expectedSize)
Constructs a new updatable map which merge the mappings of the specified maps. |
HashByteCharMap |
newUpdatableMap(Map<Byte,Character> map1,
Map<Byte,Character> map2,
Map<Byte,Character> map3)
Constructs a new updatable map which merge the mappings of the specified maps. |
HashByteCharMap |
newUpdatableMap(Map<Byte,Character> map1,
Map<Byte,Character> map2,
Map<Byte,Character> map3,
int expectedSize)
Constructs a new updatable map which merge the mappings of the specified maps. |
HashByteCharMap |
newUpdatableMap(Map<Byte,Character> map1,
Map<Byte,Character> map2,
Map<Byte,Character> map3,
Map<Byte,Character> map4)
Constructs a new updatable map which merge the mappings of the specified maps. |
HashByteCharMap |
newUpdatableMap(Map<Byte,Character> map1,
Map<Byte,Character> map2,
Map<Byte,Character> map3,
Map<Byte,Character> map4,
int expectedSize)
Constructs a new updatable map which merge the mappings of the specified maps. |
HashByteCharMap |
newUpdatableMap(Map<Byte,Character> map1,
Map<Byte,Character> map2,
Map<Byte,Character> map3,
Map<Byte,Character> map4,
Map<Byte,Character> map5)
Constructs a new updatable map which merge the mappings of the specified maps. |
HashByteCharMap |
newUpdatableMap(Map<Byte,Character> map1,
Map<Byte,Character> map2,
Map<Byte,Character> map3,
Map<Byte,Character> map4,
Map<Byte,Character> map5,
int expectedSize)
Constructs a new updatable map which merge the mappings of the specified maps. |
HashByteCharMap |
newUpdatableMapOf(byte k1,
char v1)
Constructs a new updatable map of the single specified mapping. |
HashByteCharMap |
newUpdatableMapOf(byte k1,
char v1,
byte k2,
char v2)
Constructs a new updatable map of the two specified mappings. |
HashByteCharMap |
newUpdatableMapOf(byte k1,
char v1,
byte k2,
char v2,
byte k3,
char v3)
Constructs a new updatable map of the three specified mappings. |
HashByteCharMap |
newUpdatableMapOf(byte k1,
char v1,
byte k2,
char v2,
byte k3,
char v3,
byte k4,
char v4)
Constructs a new updatable map of the four specified mappings. |
HashByteCharMap |
newUpdatableMapOf(byte k1,
char v1,
byte k2,
char v2,
byte k3,
char v3,
byte k4,
char v4,
byte k5,
char v5)
Constructs a new updatable map of the five specified mappings. |
| Methods inherited from interface com.koloboke.collect.map.ByteCharMapFactory |
|---|
getDefaultValue, withDefaultValue |
| Methods inherited from interface com.koloboke.collect.hash.ByteHashFactory |
|---|
getLowerKeyDomainBound, getUpperKeyDomainBound, withKeysDomain, withKeysDomainComplement |
| Methods inherited from interface com.koloboke.collect.hash.HashContainerFactory |
|---|
getHashConfig, withHashConfig |
| Methods inherited from interface com.koloboke.collect.ContainerFactory |
|---|
getDefaultExpectedSize, withDefaultExpectedSize |
| Method Detail |
|---|
@Nonnull HashByteCharMap newMutableMap()
ByteCharMapFactory
newMutableMap in interface ByteCharMapFactory<HashByteCharMapFactory>@Nonnull HashByteCharMap newMutableMap(int expectedSize)
ByteCharMapFactory
newMutableMap in interface ByteCharMapFactory<HashByteCharMapFactory>expectedSize - the expected size of the returned map
@Nonnull
HashByteCharMap newMutableMap(@Nonnull
Map<Byte,Character> map1,
@Nonnull
Map<Byte,Character> map2,
int expectedSize)
ByteCharMapFactorymap2 have priority over mappings from the map1 with
the same keys.
newMutableMap in interface ByteCharMapFactory<HashByteCharMapFactory>map1 - the first map to mergemap2 - the second map to mergeexpectedSize - the expected size of the returned map
@Nonnull
HashByteCharMap newMutableMap(@Nonnull
Map<Byte,Character> map1,
@Nonnull
Map<Byte,Character> map2,
@Nonnull
Map<Byte,Character> map3,
int expectedSize)
ByteCharMapFactory
newMutableMap in interface ByteCharMapFactory<HashByteCharMapFactory>map1 - the first map to mergemap2 - the second map to mergemap3 - the third map to mergeexpectedSize - the expected size of the returned map
@Nonnull
HashByteCharMap newMutableMap(@Nonnull
Map<Byte,Character> map1,
@Nonnull
Map<Byte,Character> map2,
@Nonnull
Map<Byte,Character> map3,
@Nonnull
Map<Byte,Character> map4,
int expectedSize)
ByteCharMapFactory
newMutableMap in interface ByteCharMapFactory<HashByteCharMapFactory>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
HashByteCharMap newMutableMap(@Nonnull
Map<Byte,Character> map1,
@Nonnull
Map<Byte,Character> map2,
@Nonnull
Map<Byte,Character> map3,
@Nonnull
Map<Byte,Character> map4,
@Nonnull
Map<Byte,Character> map5,
int expectedSize)
ByteCharMapFactory
newMutableMap in interface ByteCharMapFactory<HashByteCharMapFactory>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
HashByteCharMap newMutableMap(@Nonnull
Consumer<ByteCharConsumer> entriesSupplier,
int expectedSize)
ByteCharMapFactoryExample: TODO
newMutableMap in interface ByteCharMapFactory<HashByteCharMapFactory>entriesSupplier - the function which supply mappings for the returned map via
the callback passed inexpectedSize - the expected size of the returned map
@Nonnull
HashByteCharMap newMutableMap(@Nonnull
byte[] keys,
@Nonnull
char[] values,
int expectedSize)
ByteCharMapFactorykeys 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 ByteCharMapFactory<HashByteCharMapFactory>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
HashByteCharMap newMutableMap(@Nonnull
Byte[] keys,
@Nonnull
Character[] values,
int expectedSize)
ByteCharMapFactorykeys 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 ByteCharMapFactory<HashByteCharMapFactory>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
HashByteCharMap newMutableMap(@Nonnull
Iterable<Byte> keys,
@Nonnull
Iterable<Character> values,
int expectedSize)
ByteCharMapFactorykeys 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 ByteCharMapFactory<HashByteCharMapFactory>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
HashByteCharMap newMutableMap(@Nonnull
Map<Byte,Character> map)
ByteCharMapFactorymap.
newMutableMap in interface ByteCharMapFactory<HashByteCharMapFactory>map - the map whose mappings are to be placed in the returned map
map
@Nonnull
HashByteCharMap newMutableMap(@Nonnull
Map<Byte,Character> map1,
@Nonnull
Map<Byte,Character> map2)
ByteCharMapFactorymap2 have priority over mappings from the map1 with
the same keys.
newMutableMap in interface ByteCharMapFactory<HashByteCharMapFactory>map1 - the first map to mergemap2 - the second map to merge
@Nonnull
HashByteCharMap newMutableMap(@Nonnull
Map<Byte,Character> map1,
@Nonnull
Map<Byte,Character> map2,
@Nonnull
Map<Byte,Character> map3)
ByteCharMapFactory
newMutableMap in interface ByteCharMapFactory<HashByteCharMapFactory>map1 - the first map to mergemap2 - the second map to mergemap3 - the third map to merge
@Nonnull
HashByteCharMap newMutableMap(@Nonnull
Map<Byte,Character> map1,
@Nonnull
Map<Byte,Character> map2,
@Nonnull
Map<Byte,Character> map3,
@Nonnull
Map<Byte,Character> map4)
ByteCharMapFactory
newMutableMap in interface ByteCharMapFactory<HashByteCharMapFactory>map1 - the first map to mergemap2 - the second map to mergemap3 - the third map to mergemap4 - the fourth map to merge
@Nonnull
HashByteCharMap newMutableMap(@Nonnull
Map<Byte,Character> map1,
@Nonnull
Map<Byte,Character> map2,
@Nonnull
Map<Byte,Character> map3,
@Nonnull
Map<Byte,Character> map4,
@Nonnull
Map<Byte,Character> map5)
ByteCharMapFactory
newMutableMap in interface ByteCharMapFactory<HashByteCharMapFactory>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
HashByteCharMap newMutableMap(@Nonnull
Consumer<ByteCharConsumer> entriesSupplier)
ByteCharMapFactoryExample: TODO
newMutableMap in interface ByteCharMapFactory<HashByteCharMapFactory>entriesSupplier - the function which supply mappings for the returned map via
the callback passed in
@Nonnull
HashByteCharMap newMutableMap(@Nonnull
byte[] keys,
@Nonnull
char[] values)
ByteCharMapFactorykeys 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 ByteCharMapFactory<HashByteCharMapFactory>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
HashByteCharMap newMutableMap(@Nonnull
Byte[] keys,
@Nonnull
Character[] values)
ByteCharMapFactorykeys 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 ByteCharMapFactory<HashByteCharMapFactory>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
HashByteCharMap newMutableMap(@Nonnull
Iterable<Byte> keys,
@Nonnull
Iterable<Character> values)
ByteCharMapFactorykeys 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 ByteCharMapFactory<HashByteCharMapFactory>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
HashByteCharMap newMutableMapOf(byte k1,
char v1)
ByteCharMapFactory
newMutableMapOf in interface ByteCharMapFactory<HashByteCharMapFactory>k1 - the key of the sole mappingv1 - the value of the sole mapping
@Nonnull
HashByteCharMap newMutableMapOf(byte k1,
char v1,
byte k2,
char v2)
ByteCharMapFactory
newMutableMapOf in interface ByteCharMapFactory<HashByteCharMapFactory>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
HashByteCharMap newMutableMapOf(byte k1,
char v1,
byte k2,
char v2,
byte k3,
char v3)
ByteCharMapFactory
newMutableMapOf in interface ByteCharMapFactory<HashByteCharMapFactory>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
HashByteCharMap newMutableMapOf(byte k1,
char v1,
byte k2,
char v2,
byte k3,
char v3,
byte k4,
char v4)
ByteCharMapFactory
newMutableMapOf in interface ByteCharMapFactory<HashByteCharMapFactory>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
HashByteCharMap newMutableMapOf(byte k1,
char v1,
byte k2,
char v2,
byte k3,
char v3,
byte k4,
char v4,
byte k5,
char v5)
ByteCharMapFactory
newMutableMapOf in interface ByteCharMapFactory<HashByteCharMapFactory>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 HashByteCharMap newUpdatableMap()
ByteCharMapFactory
newUpdatableMap in interface ByteCharMapFactory<HashByteCharMapFactory>@Nonnull HashByteCharMap newUpdatableMap(int expectedSize)
ByteCharMapFactory
newUpdatableMap in interface ByteCharMapFactory<HashByteCharMapFactory>expectedSize - the expected size of the returned map
@Nonnull
HashByteCharMap newUpdatableMap(@Nonnull
Map<Byte,Character> map1,
@Nonnull
Map<Byte,Character> map2,
int expectedSize)
ByteCharMapFactorymap2 have priority over mappings from the map1 with
the same keys.
newUpdatableMap in interface ByteCharMapFactory<HashByteCharMapFactory>map1 - the first map to mergemap2 - the second map to mergeexpectedSize - the expected size of the returned map
@Nonnull
HashByteCharMap newUpdatableMap(@Nonnull
Map<Byte,Character> map1,
@Nonnull
Map<Byte,Character> map2,
@Nonnull
Map<Byte,Character> map3,
int expectedSize)
ByteCharMapFactory
newUpdatableMap in interface ByteCharMapFactory<HashByteCharMapFactory>map1 - the first map to mergemap2 - the second map to mergemap3 - the third map to mergeexpectedSize - the expected size of the returned map
@Nonnull
HashByteCharMap newUpdatableMap(@Nonnull
Map<Byte,Character> map1,
@Nonnull
Map<Byte,Character> map2,
@Nonnull
Map<Byte,Character> map3,
@Nonnull
Map<Byte,Character> map4,
int expectedSize)
ByteCharMapFactory
newUpdatableMap in interface ByteCharMapFactory<HashByteCharMapFactory>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
HashByteCharMap newUpdatableMap(@Nonnull
Map<Byte,Character> map1,
@Nonnull
Map<Byte,Character> map2,
@Nonnull
Map<Byte,Character> map3,
@Nonnull
Map<Byte,Character> map4,
@Nonnull
Map<Byte,Character> map5,
int expectedSize)
ByteCharMapFactory
newUpdatableMap in interface ByteCharMapFactory<HashByteCharMapFactory>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
HashByteCharMap newUpdatableMap(@Nonnull
Consumer<ByteCharConsumer> entriesSupplier,
int expectedSize)
ByteCharMapFactoryExample: TODO
newUpdatableMap in interface ByteCharMapFactory<HashByteCharMapFactory>entriesSupplier - the function which supply mappings for the returned map via
the callback passed inexpectedSize - the expected size of the returned map
@Nonnull
HashByteCharMap newUpdatableMap(@Nonnull
byte[] keys,
@Nonnull
char[] values,
int expectedSize)
ByteCharMapFactorykeys 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 ByteCharMapFactory<HashByteCharMapFactory>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
HashByteCharMap newUpdatableMap(@Nonnull
Byte[] keys,
@Nonnull
Character[] values,
int expectedSize)
ByteCharMapFactorykeys 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 ByteCharMapFactory<HashByteCharMapFactory>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
HashByteCharMap newUpdatableMap(@Nonnull
Iterable<Byte> keys,
@Nonnull
Iterable<Character> values,
int expectedSize)
ByteCharMapFactorykeys 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 ByteCharMapFactory<HashByteCharMapFactory>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
HashByteCharMap newUpdatableMap(@Nonnull
Map<Byte,Character> map)
ByteCharMapFactorymap.
newUpdatableMap in interface ByteCharMapFactory<HashByteCharMapFactory>map - the map whose mappings are to be placed in the returned map
map
@Nonnull
HashByteCharMap newUpdatableMap(@Nonnull
Map<Byte,Character> map1,
@Nonnull
Map<Byte,Character> map2)
ByteCharMapFactorymap2 have priority over mappings from the map1 with
the same keys.
newUpdatableMap in interface ByteCharMapFactory<HashByteCharMapFactory>map1 - the first map to mergemap2 - the second map to merge
@Nonnull
HashByteCharMap newUpdatableMap(@Nonnull
Map<Byte,Character> map1,
@Nonnull
Map<Byte,Character> map2,
@Nonnull
Map<Byte,Character> map3)
ByteCharMapFactory
newUpdatableMap in interface ByteCharMapFactory<HashByteCharMapFactory>map1 - the first map to mergemap2 - the second map to mergemap3 - the third map to merge
@Nonnull
HashByteCharMap newUpdatableMap(@Nonnull
Map<Byte,Character> map1,
@Nonnull
Map<Byte,Character> map2,
@Nonnull
Map<Byte,Character> map3,
@Nonnull
Map<Byte,Character> map4)
ByteCharMapFactory
newUpdatableMap in interface ByteCharMapFactory<HashByteCharMapFactory>map1 - the first map to mergemap2 - the second map to mergemap3 - the third map to mergemap4 - the fourth map to merge
@Nonnull
HashByteCharMap newUpdatableMap(@Nonnull
Map<Byte,Character> map1,
@Nonnull
Map<Byte,Character> map2,
@Nonnull
Map<Byte,Character> map3,
@Nonnull
Map<Byte,Character> map4,
@Nonnull
Map<Byte,Character> map5)
ByteCharMapFactory
newUpdatableMap in interface ByteCharMapFactory<HashByteCharMapFactory>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
HashByteCharMap newUpdatableMap(@Nonnull
Consumer<ByteCharConsumer> entriesSupplier)
ByteCharMapFactoryExample: TODO
newUpdatableMap in interface ByteCharMapFactory<HashByteCharMapFactory>entriesSupplier - the function which supply mappings for the returned map via
the callback passed in
@Nonnull
HashByteCharMap newUpdatableMap(@Nonnull
byte[] keys,
@Nonnull
char[] values)
ByteCharMapFactorykeys 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 ByteCharMapFactory<HashByteCharMapFactory>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
HashByteCharMap newUpdatableMap(@Nonnull
Byte[] keys,
@Nonnull
Character[] values)
ByteCharMapFactorykeys 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 ByteCharMapFactory<HashByteCharMapFactory>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
HashByteCharMap newUpdatableMap(@Nonnull
Iterable<Byte> keys,
@Nonnull
Iterable<Character> values)
ByteCharMapFactorykeys 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 ByteCharMapFactory<HashByteCharMapFactory>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
HashByteCharMap newUpdatableMapOf(byte k1,
char v1)
ByteCharMapFactory
newUpdatableMapOf in interface ByteCharMapFactory<HashByteCharMapFactory>k1 - the key of the sole mappingv1 - the value of the sole mapping
@Nonnull
HashByteCharMap newUpdatableMapOf(byte k1,
char v1,
byte k2,
char v2)
ByteCharMapFactory
newUpdatableMapOf in interface ByteCharMapFactory<HashByteCharMapFactory>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
HashByteCharMap newUpdatableMapOf(byte k1,
char v1,
byte k2,
char v2,
byte k3,
char v3)
ByteCharMapFactory
newUpdatableMapOf in interface ByteCharMapFactory<HashByteCharMapFactory>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
HashByteCharMap newUpdatableMapOf(byte k1,
char v1,
byte k2,
char v2,
byte k3,
char v3,
byte k4,
char v4)
ByteCharMapFactory
newUpdatableMapOf in interface ByteCharMapFactory<HashByteCharMapFactory>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
HashByteCharMap newUpdatableMapOf(byte k1,
char v1,
byte k2,
char v2,
byte k3,
char v3,
byte k4,
char v4,
byte k5,
char v5)
ByteCharMapFactory
newUpdatableMapOf in interface ByteCharMapFactory<HashByteCharMapFactory>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
HashByteCharMap newImmutableMap(@Nonnull
Map<Byte,Character> map1,
@Nonnull
Map<Byte,Character> map2,
int expectedSize)
ByteCharMapFactorymap2 have priority over mappings from the map1 with
the same keys.
newImmutableMap in interface ByteCharMapFactory<HashByteCharMapFactory>map1 - the first map to mergemap2 - the second map to mergeexpectedSize - the expected size of the returned map
@Nonnull
HashByteCharMap newImmutableMap(@Nonnull
Map<Byte,Character> map1,
@Nonnull
Map<Byte,Character> map2,
@Nonnull
Map<Byte,Character> map3,
int expectedSize)
ByteCharMapFactory
newImmutableMap in interface ByteCharMapFactory<HashByteCharMapFactory>map1 - the first map to mergemap2 - the second map to mergemap3 - the third map to mergeexpectedSize - the expected size of the returned map
@Nonnull
HashByteCharMap newImmutableMap(@Nonnull
Map<Byte,Character> map1,
@Nonnull
Map<Byte,Character> map2,
@Nonnull
Map<Byte,Character> map3,
@Nonnull
Map<Byte,Character> map4,
int expectedSize)
ByteCharMapFactory
newImmutableMap in interface ByteCharMapFactory<HashByteCharMapFactory>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
HashByteCharMap newImmutableMap(@Nonnull
Map<Byte,Character> map1,
@Nonnull
Map<Byte,Character> map2,
@Nonnull
Map<Byte,Character> map3,
@Nonnull
Map<Byte,Character> map4,
@Nonnull
Map<Byte,Character> map5,
int expectedSize)
ByteCharMapFactory
newImmutableMap in interface ByteCharMapFactory<HashByteCharMapFactory>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
HashByteCharMap newImmutableMap(@Nonnull
Consumer<ByteCharConsumer> entriesSupplier,
int expectedSize)
ByteCharMapFactoryExample: TODO
newImmutableMap in interface ByteCharMapFactory<HashByteCharMapFactory>entriesSupplier - the function which supply mappings for the returned map via
the callback passed inexpectedSize - the expected size of the returned map
@Nonnull
HashByteCharMap newImmutableMap(@Nonnull
byte[] keys,
@Nonnull
char[] values,
int expectedSize)
ByteCharMapFactorykeys 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 ByteCharMapFactory<HashByteCharMapFactory>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
HashByteCharMap newImmutableMap(@Nonnull
Byte[] keys,
@Nonnull
Character[] values,
int expectedSize)
ByteCharMapFactorykeys 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 ByteCharMapFactory<HashByteCharMapFactory>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
HashByteCharMap newImmutableMap(@Nonnull
Iterable<Byte> keys,
@Nonnull
Iterable<Character> values,
int expectedSize)
ByteCharMapFactorykeys 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 ByteCharMapFactory<HashByteCharMapFactory>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
HashByteCharMap newImmutableMap(@Nonnull
Map<Byte,Character> map)
ByteCharMapFactorymap.
newImmutableMap in interface ByteCharMapFactory<HashByteCharMapFactory>map - the map whose mappings are to be placed in the returned map
map
@Nonnull
HashByteCharMap newImmutableMap(@Nonnull
Map<Byte,Character> map1,
@Nonnull
Map<Byte,Character> map2)
ByteCharMapFactorymap2 have priority over mappings from the map1 with
the same keys.
newImmutableMap in interface ByteCharMapFactory<HashByteCharMapFactory>map1 - the first map to mergemap2 - the second map to merge
@Nonnull
HashByteCharMap newImmutableMap(@Nonnull
Map<Byte,Character> map1,
@Nonnull
Map<Byte,Character> map2,
@Nonnull
Map<Byte,Character> map3)
ByteCharMapFactory
newImmutableMap in interface ByteCharMapFactory<HashByteCharMapFactory>map1 - the first map to mergemap2 - the second map to mergemap3 - the third map to merge
@Nonnull
HashByteCharMap newImmutableMap(@Nonnull
Map<Byte,Character> map1,
@Nonnull
Map<Byte,Character> map2,
@Nonnull
Map<Byte,Character> map3,
@Nonnull
Map<Byte,Character> map4)
ByteCharMapFactory
newImmutableMap in interface ByteCharMapFactory<HashByteCharMapFactory>map1 - the first map to mergemap2 - the second map to mergemap3 - the third map to mergemap4 - the fourth map to merge
@Nonnull
HashByteCharMap newImmutableMap(@Nonnull
Map<Byte,Character> map1,
@Nonnull
Map<Byte,Character> map2,
@Nonnull
Map<Byte,Character> map3,
@Nonnull
Map<Byte,Character> map4,
@Nonnull
Map<Byte,Character> map5)
ByteCharMapFactory
newImmutableMap in interface ByteCharMapFactory<HashByteCharMapFactory>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
HashByteCharMap newImmutableMap(@Nonnull
Consumer<ByteCharConsumer> entriesSupplier)
ByteCharMapFactoryExample: TODO
newImmutableMap in interface ByteCharMapFactory<HashByteCharMapFactory>entriesSupplier - the function which supply mappings for the returned map via
the callback passed in
@Nonnull
HashByteCharMap newImmutableMap(@Nonnull
byte[] keys,
@Nonnull
char[] values)
ByteCharMapFactorykeys 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 ByteCharMapFactory<HashByteCharMapFactory>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
HashByteCharMap newImmutableMap(@Nonnull
Byte[] keys,
@Nonnull
Character[] values)
ByteCharMapFactorykeys 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 ByteCharMapFactory<HashByteCharMapFactory>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
HashByteCharMap newImmutableMap(@Nonnull
Iterable<Byte> keys,
@Nonnull
Iterable<Character> values)
ByteCharMapFactorykeys 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 ByteCharMapFactory<HashByteCharMapFactory>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
HashByteCharMap newImmutableMapOf(byte k1,
char v1)
ByteCharMapFactory
newImmutableMapOf in interface ByteCharMapFactory<HashByteCharMapFactory>k1 - the key of the sole mappingv1 - the value of the sole mapping
@Nonnull
HashByteCharMap newImmutableMapOf(byte k1,
char v1,
byte k2,
char v2)
ByteCharMapFactory
newImmutableMapOf in interface ByteCharMapFactory<HashByteCharMapFactory>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
HashByteCharMap newImmutableMapOf(byte k1,
char v1,
byte k2,
char v2,
byte k3,
char v3)
ByteCharMapFactory
newImmutableMapOf in interface ByteCharMapFactory<HashByteCharMapFactory>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
HashByteCharMap newImmutableMapOf(byte k1,
char v1,
byte k2,
char v2,
byte k3,
char v3,
byte k4,
char v4)
ByteCharMapFactory
newImmutableMapOf in interface ByteCharMapFactory<HashByteCharMapFactory>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
HashByteCharMap newImmutableMapOf(byte k1,
char v1,
byte k2,
char v2,
byte k3,
char v3,
byte k4,
char v4,
byte k5,
char v5)
ByteCharMapFactory
newImmutableMapOf in interface ByteCharMapFactory<HashByteCharMapFactory>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
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||