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