Interface ImmutableIntFloatMapFactory
-
public interface ImmutableIntFloatMapFactoryA factory which creates instances of typeImmutableIntFloatMap. 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 ImmutableIntFloatMapempty()<T> ImmutableIntFloatMapfrom(Iterable<T> iterable, IntFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)Creates anImmutableIntFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableIntFloatMapof()Same asempty().ImmutableIntFloatMapof(int key, float value)Same aswith(int, float).ImmutableIntFloatMapofAll(IntFloatMap map)Same aswithAll(IntFloatMap).ImmutableIntFloatMapwith()Same asempty().ImmutableIntFloatMapwith(int key, float value)ImmutableIntFloatMapwithAll(IntFloatMap map)
-
-
-
Method Detail
-
empty
ImmutableIntFloatMap empty()
- Since:
- 6.0
-
of
ImmutableIntFloatMap of()
Same asempty().
-
with
ImmutableIntFloatMap with()
Same asempty().
-
of
ImmutableIntFloatMap of(int key, float value)
Same aswith(int, float).
-
with
ImmutableIntFloatMap with(int key, float value)
-
ofAll
ImmutableIntFloatMap ofAll(IntFloatMap map)
Same aswithAll(IntFloatMap).
-
withAll
ImmutableIntFloatMap withAll(IntFloatMap map)
-
from
<T> ImmutableIntFloatMap from(Iterable<T> iterable, IntFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)
Creates anImmutableIntFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-
-