Interface ImmutableFloatDoubleMapFactory
- All Known Implementing Classes:
ImmutableFloatDoubleMapFactoryImpl
public interface ImmutableFloatDoubleMapFactory
A factory which creates instances of type
ImmutableFloatDoubleMap
.
This file was automatically generated from template file immutablePrimitivePrimitiveMapFactory.stg.- Since:
- 4.0.
-
Method Summary
Modifier and Type Method Description ImmutableFloatDoubleMap
empty()
<T> ImmutableFloatDoubleMap
from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)
Creates anImmutableFloatDoubleMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableFloatDoubleMap
of()
Same asempty()
.ImmutableFloatDoubleMap
of(float key, double value)
Same aswith(float, double)
.ImmutableFloatDoubleMap
ofAll(FloatDoubleMap map)
Same aswithAll(FloatDoubleMap)
.ImmutableFloatDoubleMap
with()
Same asempty()
.ImmutableFloatDoubleMap
with(float key, double value)
ImmutableFloatDoubleMap
withAll(FloatDoubleMap map)
-
Method Details
-
empty
ImmutableFloatDoubleMap empty()- Since:
- 6.0
-
of
Same asempty()
. -
with
ImmutableFloatDoubleMap with()Same asempty()
. -
of
Same aswith(float, double)
. -
with
-
ofAll
Same aswithAll(FloatDoubleMap)
. -
withAll
-
from
<T> ImmutableFloatDoubleMap from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)Creates anImmutableFloatDoubleMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-