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