net.openhft.collect.map.hash
Interface HashLongIntMapFactory
- All Superinterfaces:
- HashContainerFactory<HashLongIntMapFactory>, LongHashFactory<HashLongIntMapFactory>, LongIntMapFactory
public interface HashLongIntMapFactory
- extends LongIntMapFactory, LongHashFactory<HashLongIntMapFactory>
An immutable factory of HashLongIntMaps
- See Also:
HashLongIntMap,
HashLongIntMaps.getDefaultFactory()
|
Method Summary |
HashLongIntMap |
newImmutableMap(Consumer<LongIntConsumer> entriesSupplier)
|
HashLongIntMap |
newImmutableMap(Consumer<LongIntConsumer> entriesSupplier,
int expectedSize)
|
HashLongIntMap |
newImmutableMap(Iterable<Long> keys,
Iterable<Integer> values)
|
HashLongIntMap |
newImmutableMap(Iterable<Long> keys,
Iterable<Integer> values,
int expectedSize)
|
HashLongIntMap |
newImmutableMap(long[] keys,
int[] values)
|
HashLongIntMap |
newImmutableMap(long[] keys,
int[] values,
int expectedSize)
|
HashLongIntMap |
newImmutableMap(Long[] keys,
Integer[] values)
|
HashLongIntMap |
newImmutableMap(Long[] keys,
Integer[] values,
int expectedSize)
|
HashLongIntMap |
newImmutableMap(Map<Long,Integer> map)
|
HashLongIntMap |
newImmutableMap(Map<Long,Integer> map1,
Map<Long,Integer> map2)
|
HashLongIntMap |
newImmutableMap(Map<Long,Integer> map1,
Map<Long,Integer> map2,
int expectedSize)
|
HashLongIntMap |
newImmutableMap(Map<Long,Integer> map1,
Map<Long,Integer> map2,
Map<Long,Integer> map3)
|
HashLongIntMap |
newImmutableMap(Map<Long,Integer> map1,
Map<Long,Integer> map2,
Map<Long,Integer> map3,
int expectedSize)
|
HashLongIntMap |
newImmutableMap(Map<Long,Integer> map1,
Map<Long,Integer> map2,
Map<Long,Integer> map3,
Map<Long,Integer> map4)
|
HashLongIntMap |
newImmutableMap(Map<Long,Integer> map1,
Map<Long,Integer> map2,
Map<Long,Integer> map3,
Map<Long,Integer> map4,
int expectedSize)
|
HashLongIntMap |
newImmutableMap(Map<Long,Integer> map1,
Map<Long,Integer> map2,
Map<Long,Integer> map3,
Map<Long,Integer> map4,
Map<Long,Integer> map5)
|
HashLongIntMap |
newImmutableMap(Map<Long,Integer> map1,
Map<Long,Integer> map2,
Map<Long,Integer> map3,
Map<Long,Integer> map4,
Map<Long,Integer> map5,
int expectedSize)
|
HashLongIntMap |
newImmutableMapOf(long k1,
int v1)
|
HashLongIntMap |
newImmutableMapOf(long k1,
int v1,
long k2,
int v2)
|
HashLongIntMap |
newImmutableMapOf(long k1,
int v1,
long k2,
int v2,
long k3,
int v3)
|
HashLongIntMap |
newImmutableMapOf(long k1,
int v1,
long k2,
int v2,
long k3,
int v3,
long k4,
int v4)
|
HashLongIntMap |
newImmutableMapOf(long k1,
int v1,
long k2,
int v2,
long k3,
int v3,
long k4,
int v4,
long k5,
int v5)
|
HashLongIntMap |
newMutableMap()
|
HashLongIntMap |
newMutableMap(Consumer<LongIntConsumer> entriesSupplier)
|
HashLongIntMap |
newMutableMap(Consumer<LongIntConsumer> entriesSupplier,
int expectedSize)
|
HashLongIntMap |
newMutableMap(int expectedSize)
|
HashLongIntMap |
newMutableMap(Iterable<Long> keys,
Iterable<Integer> values)
|
HashLongIntMap |
newMutableMap(Iterable<Long> keys,
Iterable<Integer> values,
int expectedSize)
|
HashLongIntMap |
newMutableMap(long[] keys,
int[] values)
|
HashLongIntMap |
newMutableMap(long[] keys,
int[] values,
int expectedSize)
|
HashLongIntMap |
newMutableMap(Long[] keys,
Integer[] values)
|
HashLongIntMap |
newMutableMap(Long[] keys,
Integer[] values,
int expectedSize)
|
HashLongIntMap |
newMutableMap(Map<Long,Integer> map)
|
HashLongIntMap |
newMutableMap(Map<Long,Integer> map1,
Map<Long,Integer> map2)
|
HashLongIntMap |
newMutableMap(Map<Long,Integer> map1,
Map<Long,Integer> map2,
int expectedSize)
|
HashLongIntMap |
newMutableMap(Map<Long,Integer> map1,
Map<Long,Integer> map2,
Map<Long,Integer> map3)
|
HashLongIntMap |
newMutableMap(Map<Long,Integer> map1,
Map<Long,Integer> map2,
Map<Long,Integer> map3,
int expectedSize)
|
HashLongIntMap |
newMutableMap(Map<Long,Integer> map1,
Map<Long,Integer> map2,
Map<Long,Integer> map3,
Map<Long,Integer> map4)
|
HashLongIntMap |
newMutableMap(Map<Long,Integer> map1,
Map<Long,Integer> map2,
Map<Long,Integer> map3,
Map<Long,Integer> map4,
int expectedSize)
|
HashLongIntMap |
newMutableMap(Map<Long,Integer> map1,
Map<Long,Integer> map2,
Map<Long,Integer> map3,
Map<Long,Integer> map4,
Map<Long,Integer> map5)
|
HashLongIntMap |
newMutableMap(Map<Long,Integer> map1,
Map<Long,Integer> map2,
Map<Long,Integer> map3,
Map<Long,Integer> map4,
Map<Long,Integer> map5,
int expectedSize)
|
HashLongIntMap |
newMutableMapOf(long k1,
int v1)
|
HashLongIntMap |
newMutableMapOf(long k1,
int v1,
long k2,
int v2)
|
HashLongIntMap |
newMutableMapOf(long k1,
int v1,
long k2,
int v2,
long k3,
int v3)
|
HashLongIntMap |
newMutableMapOf(long k1,
int v1,
long k2,
int v2,
long k3,
int v3,
long k4,
int v4)
|
HashLongIntMap |
newMutableMapOf(long k1,
int v1,
long k2,
int v2,
long k3,
int v3,
long k4,
int v4,
long k5,
int v5)
|
HashLongIntMap |
newUpdatableMap()
|
HashLongIntMap |
newUpdatableMap(Consumer<LongIntConsumer> entriesSupplier)
|
HashLongIntMap |
newUpdatableMap(Consumer<LongIntConsumer> entriesSupplier,
int expectedSize)
|
HashLongIntMap |
newUpdatableMap(int expectedSize)
|
HashLongIntMap |
newUpdatableMap(Iterable<Long> keys,
Iterable<Integer> values)
|
HashLongIntMap |
newUpdatableMap(Iterable<Long> keys,
Iterable<Integer> values,
int expectedSize)
|
HashLongIntMap |
newUpdatableMap(long[] keys,
int[] values)
|
HashLongIntMap |
newUpdatableMap(long[] keys,
int[] values,
int expectedSize)
|
HashLongIntMap |
newUpdatableMap(Long[] keys,
Integer[] values)
|
HashLongIntMap |
newUpdatableMap(Long[] keys,
Integer[] values,
int expectedSize)
|
HashLongIntMap |
newUpdatableMap(Map<Long,Integer> map)
|
HashLongIntMap |
newUpdatableMap(Map<Long,Integer> map1,
Map<Long,Integer> map2)
|
HashLongIntMap |
newUpdatableMap(Map<Long,Integer> map1,
Map<Long,Integer> map2,
int expectedSize)
|
HashLongIntMap |
newUpdatableMap(Map<Long,Integer> map1,
Map<Long,Integer> map2,
Map<Long,Integer> map3)
|
HashLongIntMap |
newUpdatableMap(Map<Long,Integer> map1,
Map<Long,Integer> map2,
Map<Long,Integer> map3,
int expectedSize)
|
HashLongIntMap |
newUpdatableMap(Map<Long,Integer> map1,
Map<Long,Integer> map2,
Map<Long,Integer> map3,
Map<Long,Integer> map4)
|
HashLongIntMap |
newUpdatableMap(Map<Long,Integer> map1,
Map<Long,Integer> map2,
Map<Long,Integer> map3,
Map<Long,Integer> map4,
int expectedSize)
|
HashLongIntMap |
newUpdatableMap(Map<Long,Integer> map1,
Map<Long,Integer> map2,
Map<Long,Integer> map3,
Map<Long,Integer> map4,
Map<Long,Integer> map5)
|
HashLongIntMap |
newUpdatableMap(Map<Long,Integer> map1,
Map<Long,Integer> map2,
Map<Long,Integer> map3,
Map<Long,Integer> map4,
Map<Long,Integer> map5,
int expectedSize)
|
HashLongIntMap |
newUpdatableMapOf(long k1,
int v1)
|
HashLongIntMap |
newUpdatableMapOf(long k1,
int v1,
long k2,
int v2)
|
HashLongIntMap |
newUpdatableMapOf(long k1,
int v1,
long k2,
int v2,
long k3,
int v3)
|
HashLongIntMap |
newUpdatableMapOf(long k1,
int v1,
long k2,
int v2,
long k3,
int v3,
long k4,
int v4)
|
HashLongIntMap |
newUpdatableMapOf(long k1,
int v1,
long k2,
int v2,
long k3,
int v3,
long k4,
int v4,
long k5,
int v5)
|
HashLongIntMapFactory |
withDefaultValue(int defaultValue)
|
withDefaultValue
HashLongIntMapFactory withDefaultValue(int defaultValue)
- Specified by:
withDefaultValue in interface LongIntMapFactory
- See Also:
LongIntMap.defaultValue()
newMutableMap
HashLongIntMap newMutableMap()
- Specified by:
newMutableMap in interface LongIntMapFactory
newMutableMap
HashLongIntMap newMutableMap(int expectedSize)
- Specified by:
newMutableMap in interface LongIntMapFactory
newMutableMap
HashLongIntMap newMutableMap(Map<Long,Integer> map1,
Map<Long,Integer> map2,
int expectedSize)
- Specified by:
newMutableMap in interface LongIntMapFactory
newMutableMap
HashLongIntMap newMutableMap(Map<Long,Integer> map1,
Map<Long,Integer> map2,
Map<Long,Integer> map3,
int expectedSize)
- Specified by:
newMutableMap in interface LongIntMapFactory
newMutableMap
HashLongIntMap newMutableMap(Map<Long,Integer> map1,
Map<Long,Integer> map2,
Map<Long,Integer> map3,
Map<Long,Integer> map4,
int expectedSize)
- Specified by:
newMutableMap in interface LongIntMapFactory
newMutableMap
HashLongIntMap newMutableMap(Map<Long,Integer> map1,
Map<Long,Integer> map2,
Map<Long,Integer> map3,
Map<Long,Integer> map4,
Map<Long,Integer> map5,
int expectedSize)
- Specified by:
newMutableMap in interface LongIntMapFactory
newMutableMap
HashLongIntMap newMutableMap(Map<Long,Integer> map)
- Specified by:
newMutableMap in interface LongIntMapFactory
newMutableMap
HashLongIntMap newMutableMap(Map<Long,Integer> map1,
Map<Long,Integer> map2)
- Specified by:
newMutableMap in interface LongIntMapFactory
newMutableMap
HashLongIntMap newMutableMap(Map<Long,Integer> map1,
Map<Long,Integer> map2,
Map<Long,Integer> map3)
- Specified by:
newMutableMap in interface LongIntMapFactory
newMutableMap
HashLongIntMap newMutableMap(Map<Long,Integer> map1,
Map<Long,Integer> map2,
Map<Long,Integer> map3,
Map<Long,Integer> map4)
- Specified by:
newMutableMap in interface LongIntMapFactory
newMutableMap
HashLongIntMap newMutableMap(Map<Long,Integer> map1,
Map<Long,Integer> map2,
Map<Long,Integer> map3,
Map<Long,Integer> map4,
Map<Long,Integer> map5)
- Specified by:
newMutableMap in interface LongIntMapFactory
newMutableMap
HashLongIntMap newMutableMap(Consumer<LongIntConsumer> entriesSupplier)
- Specified by:
newMutableMap in interface LongIntMapFactory
newMutableMap
HashLongIntMap newMutableMap(Consumer<LongIntConsumer> entriesSupplier,
int expectedSize)
- Specified by:
newMutableMap in interface LongIntMapFactory
newMutableMap
HashLongIntMap newMutableMap(long[] keys,
int[] values)
- Specified by:
newMutableMap in interface LongIntMapFactory
newMutableMap
HashLongIntMap newMutableMap(long[] keys,
int[] values,
int expectedSize)
- Specified by:
newMutableMap in interface LongIntMapFactory
newMutableMap
HashLongIntMap newMutableMap(Long[] keys,
Integer[] values)
- Specified by:
newMutableMap in interface LongIntMapFactory
newMutableMap
HashLongIntMap newMutableMap(Long[] keys,
Integer[] values,
int expectedSize)
- Specified by:
newMutableMap in interface LongIntMapFactory
newMutableMap
HashLongIntMap newMutableMap(Iterable<Long> keys,
Iterable<Integer> values)
- Specified by:
newMutableMap in interface LongIntMapFactory
newMutableMap
HashLongIntMap newMutableMap(Iterable<Long> keys,
Iterable<Integer> values,
int expectedSize)
- Specified by:
newMutableMap in interface LongIntMapFactory
newMutableMapOf
HashLongIntMap newMutableMapOf(long k1,
int v1)
- Specified by:
newMutableMapOf in interface LongIntMapFactory
newMutableMapOf
HashLongIntMap newMutableMapOf(long k1,
int v1,
long k2,
int v2)
- Specified by:
newMutableMapOf in interface LongIntMapFactory
newMutableMapOf
HashLongIntMap newMutableMapOf(long k1,
int v1,
long k2,
int v2,
long k3,
int v3)
- Specified by:
newMutableMapOf in interface LongIntMapFactory
newMutableMapOf
HashLongIntMap newMutableMapOf(long k1,
int v1,
long k2,
int v2,
long k3,
int v3,
long k4,
int v4)
- Specified by:
newMutableMapOf in interface LongIntMapFactory
newMutableMapOf
HashLongIntMap newMutableMapOf(long k1,
int v1,
long k2,
int v2,
long k3,
int v3,
long k4,
int v4,
long k5,
int v5)
- Specified by:
newMutableMapOf in interface LongIntMapFactory
newUpdatableMap
HashLongIntMap newUpdatableMap()
- Specified by:
newUpdatableMap in interface LongIntMapFactory
newUpdatableMap
HashLongIntMap newUpdatableMap(int expectedSize)
- Specified by:
newUpdatableMap in interface LongIntMapFactory
newUpdatableMap
HashLongIntMap newUpdatableMap(Map<Long,Integer> map1,
Map<Long,Integer> map2,
int expectedSize)
- Specified by:
newUpdatableMap in interface LongIntMapFactory
newUpdatableMap
HashLongIntMap newUpdatableMap(Map<Long,Integer> map1,
Map<Long,Integer> map2,
Map<Long,Integer> map3,
int expectedSize)
- Specified by:
newUpdatableMap in interface LongIntMapFactory
newUpdatableMap
HashLongIntMap newUpdatableMap(Map<Long,Integer> map1,
Map<Long,Integer> map2,
Map<Long,Integer> map3,
Map<Long,Integer> map4,
int expectedSize)
- Specified by:
newUpdatableMap in interface LongIntMapFactory
newUpdatableMap
HashLongIntMap newUpdatableMap(Map<Long,Integer> map1,
Map<Long,Integer> map2,
Map<Long,Integer> map3,
Map<Long,Integer> map4,
Map<Long,Integer> map5,
int expectedSize)
- Specified by:
newUpdatableMap in interface LongIntMapFactory
newUpdatableMap
HashLongIntMap newUpdatableMap(Map<Long,Integer> map)
- Specified by:
newUpdatableMap in interface LongIntMapFactory
newUpdatableMap
HashLongIntMap newUpdatableMap(Map<Long,Integer> map1,
Map<Long,Integer> map2)
- Specified by:
newUpdatableMap in interface LongIntMapFactory
newUpdatableMap
HashLongIntMap newUpdatableMap(Map<Long,Integer> map1,
Map<Long,Integer> map2,
Map<Long,Integer> map3)
- Specified by:
newUpdatableMap in interface LongIntMapFactory
newUpdatableMap
HashLongIntMap newUpdatableMap(Map<Long,Integer> map1,
Map<Long,Integer> map2,
Map<Long,Integer> map3,
Map<Long,Integer> map4)
- Specified by:
newUpdatableMap in interface LongIntMapFactory
newUpdatableMap
HashLongIntMap newUpdatableMap(Map<Long,Integer> map1,
Map<Long,Integer> map2,
Map<Long,Integer> map3,
Map<Long,Integer> map4,
Map<Long,Integer> map5)
- Specified by:
newUpdatableMap in interface LongIntMapFactory
newUpdatableMap
HashLongIntMap newUpdatableMap(Consumer<LongIntConsumer> entriesSupplier)
- Specified by:
newUpdatableMap in interface LongIntMapFactory
newUpdatableMap
HashLongIntMap newUpdatableMap(Consumer<LongIntConsumer> entriesSupplier,
int expectedSize)
- Specified by:
newUpdatableMap in interface LongIntMapFactory
newUpdatableMap
HashLongIntMap newUpdatableMap(long[] keys,
int[] values)
- Specified by:
newUpdatableMap in interface LongIntMapFactory
newUpdatableMap
HashLongIntMap newUpdatableMap(long[] keys,
int[] values,
int expectedSize)
- Specified by:
newUpdatableMap in interface LongIntMapFactory
newUpdatableMap
HashLongIntMap newUpdatableMap(Long[] keys,
Integer[] values)
- Specified by:
newUpdatableMap in interface LongIntMapFactory
newUpdatableMap
HashLongIntMap newUpdatableMap(Long[] keys,
Integer[] values,
int expectedSize)
- Specified by:
newUpdatableMap in interface LongIntMapFactory
newUpdatableMap
HashLongIntMap newUpdatableMap(Iterable<Long> keys,
Iterable<Integer> values)
- Specified by:
newUpdatableMap in interface LongIntMapFactory
newUpdatableMap
HashLongIntMap newUpdatableMap(Iterable<Long> keys,
Iterable<Integer> values,
int expectedSize)
- Specified by:
newUpdatableMap in interface LongIntMapFactory
newUpdatableMapOf
HashLongIntMap newUpdatableMapOf(long k1,
int v1)
- Specified by:
newUpdatableMapOf in interface LongIntMapFactory
newUpdatableMapOf
HashLongIntMap newUpdatableMapOf(long k1,
int v1,
long k2,
int v2)
- Specified by:
newUpdatableMapOf in interface LongIntMapFactory
newUpdatableMapOf
HashLongIntMap newUpdatableMapOf(long k1,
int v1,
long k2,
int v2,
long k3,
int v3)
- Specified by:
newUpdatableMapOf in interface LongIntMapFactory
newUpdatableMapOf
HashLongIntMap newUpdatableMapOf(long k1,
int v1,
long k2,
int v2,
long k3,
int v3,
long k4,
int v4)
- Specified by:
newUpdatableMapOf in interface LongIntMapFactory
newUpdatableMapOf
HashLongIntMap newUpdatableMapOf(long k1,
int v1,
long k2,
int v2,
long k3,
int v3,
long k4,
int v4,
long k5,
int v5)
- Specified by:
newUpdatableMapOf in interface LongIntMapFactory
newImmutableMap
HashLongIntMap newImmutableMap(Map<Long,Integer> map1,
Map<Long,Integer> map2,
int expectedSize)
- Specified by:
newImmutableMap in interface LongIntMapFactory
newImmutableMap
HashLongIntMap newImmutableMap(Map<Long,Integer> map1,
Map<Long,Integer> map2,
Map<Long,Integer> map3,
int expectedSize)
- Specified by:
newImmutableMap in interface LongIntMapFactory
newImmutableMap
HashLongIntMap newImmutableMap(Map<Long,Integer> map1,
Map<Long,Integer> map2,
Map<Long,Integer> map3,
Map<Long,Integer> map4,
int expectedSize)
- Specified by:
newImmutableMap in interface LongIntMapFactory
newImmutableMap
HashLongIntMap newImmutableMap(Map<Long,Integer> map1,
Map<Long,Integer> map2,
Map<Long,Integer> map3,
Map<Long,Integer> map4,
Map<Long,Integer> map5,
int expectedSize)
- Specified by:
newImmutableMap in interface LongIntMapFactory
newImmutableMap
HashLongIntMap newImmutableMap(Map<Long,Integer> map)
- Specified by:
newImmutableMap in interface LongIntMapFactory
newImmutableMap
HashLongIntMap newImmutableMap(Map<Long,Integer> map1,
Map<Long,Integer> map2)
- Specified by:
newImmutableMap in interface LongIntMapFactory
newImmutableMap
HashLongIntMap newImmutableMap(Map<Long,Integer> map1,
Map<Long,Integer> map2,
Map<Long,Integer> map3)
- Specified by:
newImmutableMap in interface LongIntMapFactory
newImmutableMap
HashLongIntMap newImmutableMap(Map<Long,Integer> map1,
Map<Long,Integer> map2,
Map<Long,Integer> map3,
Map<Long,Integer> map4)
- Specified by:
newImmutableMap in interface LongIntMapFactory
newImmutableMap
HashLongIntMap newImmutableMap(Map<Long,Integer> map1,
Map<Long,Integer> map2,
Map<Long,Integer> map3,
Map<Long,Integer> map4,
Map<Long,Integer> map5)
- Specified by:
newImmutableMap in interface LongIntMapFactory
newImmutableMap
HashLongIntMap newImmutableMap(Consumer<LongIntConsumer> entriesSupplier)
- Specified by:
newImmutableMap in interface LongIntMapFactory
newImmutableMap
HashLongIntMap newImmutableMap(Consumer<LongIntConsumer> entriesSupplier,
int expectedSize)
- Specified by:
newImmutableMap in interface LongIntMapFactory
newImmutableMap
HashLongIntMap newImmutableMap(long[] keys,
int[] values)
- Specified by:
newImmutableMap in interface LongIntMapFactory
newImmutableMap
HashLongIntMap newImmutableMap(long[] keys,
int[] values,
int expectedSize)
- Specified by:
newImmutableMap in interface LongIntMapFactory
newImmutableMap
HashLongIntMap newImmutableMap(Long[] keys,
Integer[] values)
- Specified by:
newImmutableMap in interface LongIntMapFactory
newImmutableMap
HashLongIntMap newImmutableMap(Long[] keys,
Integer[] values,
int expectedSize)
- Specified by:
newImmutableMap in interface LongIntMapFactory
newImmutableMap
HashLongIntMap newImmutableMap(Iterable<Long> keys,
Iterable<Integer> values)
- Specified by:
newImmutableMap in interface LongIntMapFactory
newImmutableMap
HashLongIntMap newImmutableMap(Iterable<Long> keys,
Iterable<Integer> values,
int expectedSize)
- Specified by:
newImmutableMap in interface LongIntMapFactory
newImmutableMapOf
HashLongIntMap newImmutableMapOf(long k1,
int v1)
- Specified by:
newImmutableMapOf in interface LongIntMapFactory
newImmutableMapOf
HashLongIntMap newImmutableMapOf(long k1,
int v1,
long k2,
int v2)
- Specified by:
newImmutableMapOf in interface LongIntMapFactory
newImmutableMapOf
HashLongIntMap newImmutableMapOf(long k1,
int v1,
long k2,
int v2,
long k3,
int v3)
- Specified by:
newImmutableMapOf in interface LongIntMapFactory
newImmutableMapOf
HashLongIntMap newImmutableMapOf(long k1,
int v1,
long k2,
int v2,
long k3,
int v3,
long k4,
int v4)
- Specified by:
newImmutableMapOf in interface LongIntMapFactory
newImmutableMapOf
HashLongIntMap newImmutableMapOf(long k1,
int v1,
long k2,
int v2,
long k3,
int v3,
long k4,
int v4,
long k5,
int v5)
- Specified by:
newImmutableMapOf in interface LongIntMapFactory