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