Interface ImmutableFloatBooleanMapFactory
-
- All Known Implementing Classes:
ImmutableFloatBooleanMapFactoryImpl
public interface ImmutableFloatBooleanMapFactory
A 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 ImmutableFloatBooleanMap
empty()
<T> ImmutableFloatBooleanMap
from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
Creates anImmutableFloatBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableFloatBooleanMap
of()
Same asempty()
.ImmutableFloatBooleanMap
of(float key, boolean value)
Same aswith(float, boolean)
.ImmutableFloatBooleanMap
ofAll(FloatBooleanMap map)
Same aswithAll(FloatBooleanMap)
.ImmutableFloatBooleanMap
with()
Same asempty()
.ImmutableFloatBooleanMap
with(float key, boolean value)
ImmutableFloatBooleanMap
withAll(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(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
Creates anImmutableFloatBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-
-