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