Interface ImmutableFloatDoubleMapFactory
public interface ImmutableFloatDoubleMapFactory
A factory which creates instances of type
ImmutableFloatDoubleMap.
This file was automatically generated from template file immutablePrimitivePrimitiveMapFactory.stg.- Since:
- 4.0.
-
Method Summary
Modifier and TypeMethodDescriptionempty()from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) Creates anImmutableFloatDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.of()Same asempty().of(float key, double value) Same aswith(float, double).ofAll(FloatDoubleMap map) Same aswithAll(FloatDoubleMap).with()Same asempty().with(float key, double value) withAll(FloatDoubleMap map)
-
Method Details
-
empty
ImmutableFloatDoubleMap empty()- Since:
- 6.0
-
of
Same asempty(). -
with
ImmutableFloatDoubleMap with()Same asempty(). -
of
Same aswith(float, double). -
with
-
ofAll
Same aswithAll(FloatDoubleMap). -
withAll
-
from
<T> ImmutableFloatDoubleMap from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) Creates anImmutableFloatDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-