Interface MutableFloatShortMapFactory
public interface MutableFloatShortMapFactory
A factory which creates instances of type
MutableFloatShortMap.
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, ShortFunction<? super T> valueFunction) Creates anMutableFloatShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.of()Same asempty().default MutableFloatShortMapof(float key, short value) default MutableFloatShortMapof(float key1, short value1, float key2, short value2) default MutableFloatShortMapof(float key1, short value1, float key2, short value2, float key3, short value3) default MutableFloatShortMapof(float key1, short value1, float key2, short value2, float key3, short value3, float key4, short value4) ofAll(FloatShortMap map) Same aswithAll(FloatShortMap).ofInitialCapacity(int capacity) Same asempty(). but takes in an initial capacitywith()Same asempty().default MutableFloatShortMapwith(float key, short value) default MutableFloatShortMapwith(float key1, short value1, float key2, short value2) default MutableFloatShortMapwith(float key1, short value1, float key2, short value2, float key3, short value3) default MutableFloatShortMapwith(float key1, short value1, float key2, short value2, float key3, short value3, float key4, short value4) withAll(FloatShortMap map) withInitialCapacity(int capacity) Same asempty(). but takes in an initial capacity
-
Method Details
-
empty
MutableFloatShortMap empty() -
of
MutableFloatShortMap of()Same asempty(). -
with
MutableFloatShortMap with()Same asempty(). -
of
- Since:
- 11.1.
-
with
- Since:
- 11.1.
-
of
- Since:
- 11.1.
-
with
- Since:
- 11.1.
-
of
default MutableFloatShortMap of(float key1, short value1, float key2, short value2, float key3, short value3) - Since:
- 11.1.
-
with
default MutableFloatShortMap with(float key1, short value1, float key2, short value2, float key3, short value3) - Since:
- 11.1.
-
of
default MutableFloatShortMap of(float key1, short value1, float key2, short value2, float key3, short value3, float key4, short value4) - Since:
- 11.1.
-
with
default MutableFloatShortMap with(float key1, short value1, float key2, short value2, float key3, short value3, float key4, short 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(FloatShortMap). -
withAll
-
from
<T> MutableFloatShortMap from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction) Creates anMutableFloatShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-