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