Interface ImmutableFloatFloatMapFactory
public interface ImmutableFloatFloatMapFactory
A factory which creates instances of type
ImmutableFloatFloatMap.
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, FloatFunction<? super T> valueFunction) Creates anImmutableFloatFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.of()Same asempty().of(float key, float value) Same aswith(float, float).ofAll(FloatFloatMap map) Same aswithAll(FloatFloatMap).with()Same asempty().with(float key, float value) withAll(FloatFloatMap map)
-
Method Details
-
empty
ImmutableFloatFloatMap empty()- Since:
- 6.0
-
of
Same asempty(). -
with
ImmutableFloatFloatMap with()Same asempty(). -
of
Same aswith(float, float). -
with
-
ofAll
Same aswithAll(FloatFloatMap). -
withAll
-
from
<T> ImmutableFloatFloatMap from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction) Creates anImmutableFloatFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-