Interface ImmutableFloatBooleanMapFactory
-
public interface ImmutableFloatBooleanMapFactoryA factory which creates instances of typeImmutableFloatBooleanMap. This file was automatically generated from template file immutablePrimitivePrimitiveMapFactory.stg.- Since:
- 4.0.
-
-
Method Summary
All Methods Instance Methods Abstract Methods 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 Detail
-
empty
ImmutableFloatBooleanMap empty()
- Since:
- 6.0
-
of
ImmutableFloatBooleanMap of()
Same asempty().
-
with
ImmutableFloatBooleanMap with()
Same asempty().
-
of
ImmutableFloatBooleanMap of(float key, boolean value)
Same aswith(float, boolean).
-
with
ImmutableFloatBooleanMap with(float key, boolean value)
-
ofAll
ImmutableFloatBooleanMap ofAll(FloatBooleanMap map)
Same aswithAll(FloatBooleanMap).
-
withAll
ImmutableFloatBooleanMap withAll(FloatBooleanMap map)
-
from
<T> ImmutableFloatBooleanMap from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
Creates anImmutableFloatBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-
-