Interface ImmutableDoubleFloatMapFactory
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 TypeMethodDescriptionempty()from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction) Creates anImmutableDoubleFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.of()Same asempty().of(double key, float value) Same aswith(double, float).ofAll(DoubleFloatMap map) Same aswithAll(DoubleFloatMap).with()Same asempty().with(double key, float value) withAll(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
-