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 ImmutableFloatBooleanMap
empty()
<T> ImmutableFloatBooleanMap
from(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 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 anImmutableFloatBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-