Interface ImmutableDoubleIntMapFactory
-
public interface ImmutableDoubleIntMapFactoryA factory which creates instances of typeImmutableDoubleIntMap. 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 ImmutableDoubleIntMapempty()<T> ImmutableDoubleIntMapfrom(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)Creates anImmutableDoubleIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableDoubleIntMapof()Same asempty().ImmutableDoubleIntMapof(double key, int value)Same aswith(double, int).ImmutableDoubleIntMapofAll(DoubleIntMap map)Same aswithAll(DoubleIntMap).ImmutableDoubleIntMapwith()Same asempty().ImmutableDoubleIntMapwith(double key, int value)ImmutableDoubleIntMapwithAll(DoubleIntMap map)
-
-
-
Method Detail
-
empty
ImmutableDoubleIntMap empty()
- Since:
- 6.0
-
of
ImmutableDoubleIntMap of()
Same asempty().
-
with
ImmutableDoubleIntMap with()
Same asempty().
-
of
ImmutableDoubleIntMap of(double key, int value)
Same aswith(double, int).
-
with
ImmutableDoubleIntMap with(double key, int value)
-
ofAll
ImmutableDoubleIntMap ofAll(DoubleIntMap map)
Same aswithAll(DoubleIntMap).
-
withAll
ImmutableDoubleIntMap withAll(DoubleIntMap map)
-
from
<T> ImmutableDoubleIntMap from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
Creates anImmutableDoubleIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-
-