Interface ImmutableDoubleFloatMapFactory
- All Known Implementing Classes:
ImmutableDoubleFloatMapFactoryImpl
public interface ImmutableDoubleFloatMapFactory
A factory which creates instances of type
ImmutableDoubleFloatMap.
This file was automatically generated from template file immutablePrimitivePrimitiveMapFactory.stg.- Since:
- 4.0.
-
Method Summary
Modifier and Type Method Description ImmutableDoubleFloatMapempty()<T> ImmutableDoubleFloatMapfrom(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)Creates anImmutableDoubleFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableDoubleFloatMapof()Same asempty().ImmutableDoubleFloatMapof(double key, float value)Same aswith(double, float).ImmutableDoubleFloatMapofAll(DoubleFloatMap map)Same aswithAll(DoubleFloatMap).ImmutableDoubleFloatMapwith()Same asempty().ImmutableDoubleFloatMapwith(double key, float value)ImmutableDoubleFloatMapwithAll(DoubleFloatMap map)
-
Method Details
-
empty
ImmutableDoubleFloatMap empty()- Since:
- 6.0
-
of
Same asempty(). -
with
ImmutableDoubleFloatMap with()Same asempty(). -
of
Same aswith(double, float). -
with
-
ofAll
Same aswithAll(DoubleFloatMap). -
withAll
-
from
<T> ImmutableDoubleFloatMap from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)Creates anImmutableDoubleFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-