Interface ImmutableFloatBooleanMapFactory
- All Known Implementing Classes:
ImmutableFloatBooleanMapFactoryImpl
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 Type Method Description ImmutableFloatBooleanMapempty()<T> ImmutableFloatBooleanMapfrom(Iterable<T> iterable, FloatFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anImmutableFloatBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableFloatBooleanMapof()Same asempty().ImmutableFloatBooleanMapof(float key, boolean value)Same aswith(float, boolean).ImmutableFloatBooleanMapofAll(FloatBooleanMap map)Same aswithAll(FloatBooleanMap).ImmutableFloatBooleanMapwith()Same asempty().ImmutableFloatBooleanMapwith(float key, boolean value)ImmutableFloatBooleanMapwithAll(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
-