Interface MutableDoubleByteMapFactory
-
- All Known Implementing Classes:
MutableDoubleByteMapFactoryImpl
public interface MutableDoubleByteMapFactory
A factory which creates instances of typeMutableDoubleByteMap
. This file was automatically generated from template file mutablePrimitivePrimitiveMapFactory.stg.- Since:
- 6.0.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description MutableDoubleByteMap
empty()
<T> MutableDoubleByteMap
from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
Creates anMutableDoubleByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableDoubleByteMap
of()
Same asempty()
.default MutableDoubleByteMap
of(double key, byte value)
default MutableDoubleByteMap
of(double key1, byte value1, double key2, byte value2)
default MutableDoubleByteMap
of(double key1, byte value1, double key2, byte value2, double key3, byte value3)
default MutableDoubleByteMap
of(double key1, byte value1, double key2, byte value2, double key3, byte value3, double key4, byte value4)
MutableDoubleByteMap
ofAll(DoubleByteMap map)
Same aswithAll(DoubleByteMap)
.MutableDoubleByteMap
ofInitialCapacity(int capacity)
Same asempty()
.MutableDoubleByteMap
with()
Same asempty()
.default MutableDoubleByteMap
with(double key, byte value)
default MutableDoubleByteMap
with(double key1, byte value1, double key2, byte value2)
default MutableDoubleByteMap
with(double key1, byte value1, double key2, byte value2, double key3, byte value3)
default MutableDoubleByteMap
with(double key1, byte value1, double key2, byte value2, double key3, byte value3, double key4, byte value4)
MutableDoubleByteMap
withAll(DoubleByteMap map)
MutableDoubleByteMap
withInitialCapacity(int capacity)
Same asempty()
.
-
-
-
Method Detail
-
empty
MutableDoubleByteMap empty()
-
of
MutableDoubleByteMap of()
Same asempty()
.
-
with
MutableDoubleByteMap with()
Same asempty()
.
-
of
default MutableDoubleByteMap of(double key, byte value)
- Since:
- 11.1.
-
with
default MutableDoubleByteMap with(double key, byte value)
- Since:
- 11.1.
-
of
default MutableDoubleByteMap of(double key1, byte value1, double key2, byte value2)
- Since:
- 11.1.
-
with
default MutableDoubleByteMap with(double key1, byte value1, double key2, byte value2)
- 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
MutableDoubleByteMap ofInitialCapacity(int capacity)
Same asempty()
. but takes in an initial capacity
-
withInitialCapacity
MutableDoubleByteMap withInitialCapacity(int capacity)
Same asempty()
. but takes in an initial capacity
-
ofAll
MutableDoubleByteMap ofAll(DoubleByteMap map)
Same aswithAll(DoubleByteMap)
.
-
withAll
MutableDoubleByteMap withAll(DoubleByteMap map)
-
from
<T> MutableDoubleByteMap from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
Creates anMutableDoubleByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-
-