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