Interface ImmutableIntDoubleMapFactory
-
public interface ImmutableIntDoubleMapFactoryA factory which creates instances of typeImmutableIntDoubleMap. 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 ImmutableIntDoubleMapempty()<T> ImmutableIntDoubleMapfrom(Iterable<T> iterable, IntFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)Creates anImmutableIntDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableIntDoubleMapof()Same asempty().ImmutableIntDoubleMapof(int key, double value)Same aswith(int, double).ImmutableIntDoubleMapofAll(IntDoubleMap map)Same aswithAll(IntDoubleMap).ImmutableIntDoubleMapwith()Same asempty().ImmutableIntDoubleMapwith(int key, double value)ImmutableIntDoubleMapwithAll(IntDoubleMap map)
-
-
-
Method Detail
-
empty
ImmutableIntDoubleMap empty()
- Since:
- 6.0
-
of
ImmutableIntDoubleMap of()
Same asempty().
-
with
ImmutableIntDoubleMap with()
Same asempty().
-
of
ImmutableIntDoubleMap of(int key, double value)
Same aswith(int, double).
-
with
ImmutableIntDoubleMap with(int key, double value)
-
ofAll
ImmutableIntDoubleMap ofAll(IntDoubleMap map)
Same aswithAll(IntDoubleMap).
-
withAll
ImmutableIntDoubleMap withAll(IntDoubleMap map)
-
from
<T> ImmutableIntDoubleMap from(Iterable<T> iterable, IntFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)
Creates anImmutableIntDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-
-