Interface MutableByteLongMapFactory
public interface MutableByteLongMapFactory
A factory which creates instances of type
MutableByteLongMap.
This file was automatically generated from template file mutablePrimitivePrimitiveMapFactory.stg.- Since:
- 6.0.
-
Method Summary
Modifier and TypeMethodDescriptionempty()from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) Creates anMutableByteLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.of()Same asempty().default MutableByteLongMapof(byte key, long value) default MutableByteLongMapof(byte key1, long value1, byte key2, long value2) default MutableByteLongMapof(byte key1, long value1, byte key2, long value2, byte key3, long value3) default MutableByteLongMapof(byte key1, long value1, byte key2, long value2, byte key3, long value3, byte key4, long value4) ofAll(ByteLongMap map) Same aswithAll(ByteLongMap).ofInitialCapacity(int capacity) Same asempty(). but takes in an initial capacitywith()Same asempty().default MutableByteLongMapwith(byte key, long value) default MutableByteLongMapwith(byte key1, long value1, byte key2, long value2) default MutableByteLongMapwith(byte key1, long value1, byte key2, long value2, byte key3, long value3) default MutableByteLongMapwith(byte key1, long value1, byte key2, long value2, byte key3, long value3, byte key4, long value4) withAll(ByteLongMap map) withInitialCapacity(int capacity) Same asempty(). but takes in an initial capacity
-
Method Details
-
empty
MutableByteLongMap empty() -
of
MutableByteLongMap of()Same asempty(). -
with
MutableByteLongMap with()Same asempty(). -
of
- Since:
- 11.1.
-
with
- Since:
- 11.1.
-
of
- Since:
- 11.1.
-
with
- Since:
- 11.1.
-
of
default MutableByteLongMap of(byte key1, long value1, byte key2, long value2, byte key3, long value3) - Since:
- 11.1.
-
with
default MutableByteLongMap with(byte key1, long value1, byte key2, long value2, byte key3, long value3) - Since:
- 11.1.
-
of
default MutableByteLongMap of(byte key1, long value1, byte key2, long value2, byte key3, long value3, byte key4, long value4) - Since:
- 11.1.
-
with
default MutableByteLongMap with(byte key1, long value1, byte key2, long value2, byte key3, long value3, byte key4, long value4) - Since:
- 11.1.
-
ofInitialCapacity
Same asempty(). but takes in an initial capacity -
withInitialCapacity
Same asempty(). but takes in an initial capacity -
ofAll
Same aswithAll(ByteLongMap). -
withAll
-
from
<T> MutableByteLongMap from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) Creates anMutableByteLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-