Interface ImmutableDoubleIntMapFactory
-
- All Known Implementing Classes:
ImmutableDoubleIntMapFactoryImpl
public interface ImmutableDoubleIntMapFactory
A 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 ImmutableDoubleIntMap
empty()
<T> ImmutableDoubleIntMap
from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
Creates anImmutableDoubleIntMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableDoubleIntMap
of()
Same asempty()
.ImmutableDoubleIntMap
of(double key, int value)
Same aswith(double, int)
.ImmutableDoubleIntMap
ofAll(DoubleIntMap map)
Same aswithAll(DoubleIntMap)
.ImmutableDoubleIntMap
with()
Same asempty()
.ImmutableDoubleIntMap
with(double key, int value)
ImmutableDoubleIntMap
withAll(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(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
Creates anImmutableDoubleIntMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-
-