Interface ImmutableFloatDoubleMapFactory
- All Known Implementing Classes:
ImmutableFloatDoubleMapFactoryImpl
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 Type Method Description ImmutableFloatDoubleMapempty()<T> ImmutableFloatDoubleMapfrom(Iterable<T> iterable, FloatFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)Creates anImmutableFloatDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableFloatDoubleMapof()Same asempty().ImmutableFloatDoubleMapof(float key, double value)Same aswith(float, double).ImmutableFloatDoubleMapofAll(FloatDoubleMap map)Same aswithAll(FloatDoubleMap).ImmutableFloatDoubleMapwith()Same asempty().ImmutableFloatDoubleMapwith(float key, double value)ImmutableFloatDoubleMapwithAll(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
-