Package | Description |
---|---|
com.koloboke.collect.map |
Contains interfaces of
Map specializations, their factories and cursors. |
com.koloboke.collect.map.hash |
Contains interfaces of
Map specializations, based on hash tables,
their factories and static factory methods. |
Modifier and Type | Method and Description |
---|---|
ByteShortMap |
ByteShortMapFactory.newImmutableMap(byte[] keys,
short[] values)
Constructs a new immutable map with the given mappings, i.
|
ByteShortMap |
ByteShortMapFactory.newImmutableMap(Byte[] keys,
Short[] values)
Constructs a new immutable map with the given mappings, i.
|
ByteShortMap |
ByteShortMapFactory.newImmutableMap(byte[] keys,
short[] values,
int expectedSize)
Constructs a new immutable map with the given mappings, i.
|
ByteShortMap |
ByteShortMapFactory.newImmutableMap(Byte[] keys,
Short[] values,
int expectedSize)
Constructs a new immutable map with the given mappings, i.
|
ByteShortMap |
ByteShortMapFactory.newImmutableMap(Consumer<ByteShortConsumer> entriesSupplier)
Constructs a new immutable map filled with mappings consumed by the callback within the given
closure.
|
ByteShortMap |
ByteShortMapFactory.newImmutableMap(Consumer<ByteShortConsumer> entriesSupplier,
int expectedSize)
Constructs a new immutable map filled with mappings consumed by the callback within the given
closure.
|
ByteShortMap |
ByteShortMapFactory.newImmutableMap(Iterable<Byte> keys,
Iterable<Short> values)
Constructs a new immutable map with the given mappings, i.
|
ByteShortMap |
ByteShortMapFactory.newImmutableMap(Iterable<Byte> keys,
Iterable<Short> values,
int expectedSize)
Constructs a new immutable map with the given mappings, i.
|
ByteShortMap |
ByteShortMapFactory.newImmutableMap(Map<Byte,Short> map)
Constructs a new immutable map with the same mappings as the specified
map . |
ByteShortMap |
ByteShortMapFactory.newImmutableMap(Map<Byte,Short> map1,
Map<Byte,Short> map2)
Constructs a new immutable map which merge the mappings of the specified maps.
|
ByteShortMap |
ByteShortMapFactory.newImmutableMap(Map<Byte,Short> map1,
Map<Byte,Short> map2,
int expectedSize)
Constructs a new immutable map which merge the mappings of the specified maps.
|
ByteShortMap |
ByteShortMapFactory.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.
|
ByteShortMap |
ByteShortMapFactory.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.
|
ByteShortMap |
ByteShortMapFactory.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.
|
ByteShortMap |
ByteShortMapFactory.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.
|
ByteShortMap |
ByteShortMapFactory.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.
|
ByteShortMap |
ByteShortMapFactory.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.
|
ByteShortMap |
ByteShortMapFactory.newImmutableMapOf(byte k1,
short v1)
Constructs a new immutable map of the single specified mapping.
|
ByteShortMap |
ByteShortMapFactory.newImmutableMapOf(byte k1,
short v1,
byte k2,
short v2)
Constructs a new immutable map of the two specified mappings.
|
ByteShortMap |
ByteShortMapFactory.newImmutableMapOf(byte k1,
short v1,
byte k2,
short v2,
byte k3,
short v3)
Constructs a new immutable map of the three specified mappings.
|
ByteShortMap |
ByteShortMapFactory.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.
|
ByteShortMap |
ByteShortMapFactory.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.
|
ByteShortMap |
ByteShortMapFactory.newMutableMap()
Constructs a new empty mutable map of the default expected size.
|
ByteShortMap |
ByteShortMapFactory.newMutableMap(byte[] keys,
short[] values)
Constructs a new mutable map with the given mappings, i.
|
ByteShortMap |
ByteShortMapFactory.newMutableMap(Byte[] keys,
Short[] values)
Constructs a new mutable map with the given mappings, i.
|
ByteShortMap |
ByteShortMapFactory.newMutableMap(byte[] keys,
short[] values,
int expectedSize)
Constructs a new mutable map with the given mappings, i.
|
ByteShortMap |
ByteShortMapFactory.newMutableMap(Byte[] keys,
Short[] values,
int expectedSize)
Constructs a new mutable map with the given mappings, i.
|
ByteShortMap |
ByteShortMapFactory.newMutableMap(Consumer<ByteShortConsumer> entriesSupplier)
Constructs a new mutable map filled with mappings consumed by the callback within the given
closure.
|
ByteShortMap |
ByteShortMapFactory.newMutableMap(Consumer<ByteShortConsumer> entriesSupplier,
int expectedSize)
Constructs a new mutable map filled with mappings consumed by the callback within the given
closure.
|
ByteShortMap |
ByteShortMapFactory.newMutableMap(int expectedSize)
Constructs a new empty mutable map of the given expected size.
|
ByteShortMap |
ByteShortMapFactory.newMutableMap(Iterable<Byte> keys,
Iterable<Short> values)
Constructs a new mutable map with the given mappings, i.
|
ByteShortMap |
ByteShortMapFactory.newMutableMap(Iterable<Byte> keys,
Iterable<Short> values,
int expectedSize)
Constructs a new mutable map with the given mappings, i.
|
ByteShortMap |
ByteShortMapFactory.newMutableMap(Map<Byte,Short> map)
Constructs a new mutable map with the same mappings as the specified
map . |
ByteShortMap |
ByteShortMapFactory.newMutableMap(Map<Byte,Short> map1,
Map<Byte,Short> map2)
Constructs a new mutable map which merge the mappings of the specified maps.
|
ByteShortMap |
ByteShortMapFactory.newMutableMap(Map<Byte,Short> map1,
Map<Byte,Short> map2,
int expectedSize)
Constructs a new mutable map which merge the mappings of the specified maps.
|
ByteShortMap |
ByteShortMapFactory.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.
|
ByteShortMap |
ByteShortMapFactory.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.
|
ByteShortMap |
ByteShortMapFactory.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.
|
ByteShortMap |
ByteShortMapFactory.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.
|
ByteShortMap |
ByteShortMapFactory.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.
|
ByteShortMap |
ByteShortMapFactory.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.
|
ByteShortMap |
ByteShortMapFactory.newMutableMapOf(byte k1,
short v1)
Constructs a new mutable map of the single specified mapping.
|
ByteShortMap |
ByteShortMapFactory.newMutableMapOf(byte k1,
short v1,
byte k2,
short v2)
Constructs a new mutable map of the two specified mappings.
|
ByteShortMap |
ByteShortMapFactory.newMutableMapOf(byte k1,
short v1,
byte k2,
short v2,
byte k3,
short v3)
Constructs a new mutable map of the three specified mappings.
|
ByteShortMap |
ByteShortMapFactory.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.
|
ByteShortMap |
ByteShortMapFactory.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.
|
ByteShortMap |
ByteShortMapFactory.newUpdatableMap()
Constructs a new empty updatable map of the default expected size.
|
ByteShortMap |
ByteShortMapFactory.newUpdatableMap(byte[] keys,
short[] values)
Constructs a new updatable map with the given mappings, i.
|
ByteShortMap |
ByteShortMapFactory.newUpdatableMap(Byte[] keys,
Short[] values)
Constructs a new updatable map with the given mappings, i.
|
ByteShortMap |
ByteShortMapFactory.newUpdatableMap(byte[] keys,
short[] values,
int expectedSize)
Constructs a new updatable map with the given mappings, i.
|
ByteShortMap |
ByteShortMapFactory.newUpdatableMap(Byte[] keys,
Short[] values,
int expectedSize)
Constructs a new updatable map with the given mappings, i.
|
ByteShortMap |
ByteShortMapFactory.newUpdatableMap(Consumer<ByteShortConsumer> entriesSupplier)
Constructs a new updatable map filled with mappings consumed by the callback within the given
closure.
|
ByteShortMap |
ByteShortMapFactory.newUpdatableMap(Consumer<ByteShortConsumer> entriesSupplier,
int expectedSize)
Constructs a new updatable map filled with mappings consumed by the callback within the given
closure.
|
ByteShortMap |
ByteShortMapFactory.newUpdatableMap(int expectedSize)
Constructs a new empty updatable map of the given expected size.
|
ByteShortMap |
ByteShortMapFactory.newUpdatableMap(Iterable<Byte> keys,
Iterable<Short> values)
Constructs a new updatable map with the given mappings, i.
|
ByteShortMap |
ByteShortMapFactory.newUpdatableMap(Iterable<Byte> keys,
Iterable<Short> values,
int expectedSize)
Constructs a new updatable map with the given mappings, i.
|
ByteShortMap |
ByteShortMapFactory.newUpdatableMap(Map<Byte,Short> map)
Constructs a new updatable map with the same mappings as the specified
map . |
ByteShortMap |
ByteShortMapFactory.newUpdatableMap(Map<Byte,Short> map1,
Map<Byte,Short> map2)
Constructs a new updatable map which merge the mappings of the specified maps.
|
ByteShortMap |
ByteShortMapFactory.newUpdatableMap(Map<Byte,Short> map1,
Map<Byte,Short> map2,
int expectedSize)
Constructs a new updatable map which merge the mappings of the specified maps.
|
ByteShortMap |
ByteShortMapFactory.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.
|
ByteShortMap |
ByteShortMapFactory.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.
|
ByteShortMap |
ByteShortMapFactory.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.
|
ByteShortMap |
ByteShortMapFactory.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.
|
ByteShortMap |
ByteShortMapFactory.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.
|
ByteShortMap |
ByteShortMapFactory.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.
|
ByteShortMap |
ByteShortMapFactory.newUpdatableMapOf(byte k1,
short v1)
Constructs a new updatable map of the single specified mapping.
|
ByteShortMap |
ByteShortMapFactory.newUpdatableMapOf(byte k1,
short v1,
byte k2,
short v2)
Constructs a new updatable map of the two specified mappings.
|
ByteShortMap |
ByteShortMapFactory.newUpdatableMapOf(byte k1,
short v1,
byte k2,
short v2,
byte k3,
short v3)
Constructs a new updatable map of the three specified mappings.
|
ByteShortMap |
ByteShortMapFactory.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.
|
ByteShortMap |
ByteShortMapFactory.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.
|
Modifier and Type | Interface and Description |
---|---|
interface |
HashByteShortMap
An interface for
ByteShortMap s, based on hash tables. |