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 ImmutableFloatIntMapempty()<T> ImmutableFloatIntMapfrom(Iterable<T> iterable, FloatFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)Creates anImmutableFloatIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableFloatIntMapof()Same asempty().ImmutableFloatIntMapof(float key, int value)Same aswith(float, int).ImmutableFloatIntMapofAll(FloatIntMap map)Same aswithAll(FloatIntMap).ImmutableFloatIntMapwith()Same asempty().ImmutableFloatIntMapwith(float key, int value)ImmutableFloatIntMapwithAll(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 anImmutableFloatIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-