Interface ImmutableDoubleDoubleMapFactory
- All Known Implementing Classes:
ImmutableDoubleDoubleMapFactoryImpl
public interface ImmutableDoubleDoubleMapFactory
A factory which creates instances of type
ImmutableDoubleDoubleMap
.
This file was automatically generated from template file immutablePrimitivePrimitiveMapFactory.stg.- Since:
- 4.0.
-
Method Summary
Modifier and Type Method Description ImmutableDoubleDoubleMap
empty()
<T> ImmutableDoubleDoubleMap
from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)
Creates anImmutableDoubleDoubleMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableDoubleDoubleMap
of()
Same asempty()
.ImmutableDoubleDoubleMap
of(double key, double value)
Same aswith(double, double)
.ImmutableDoubleDoubleMap
ofAll(DoubleDoubleMap map)
Same aswithAll(DoubleDoubleMap)
.ImmutableDoubleDoubleMap
with()
Same asempty()
.ImmutableDoubleDoubleMap
with(double key, double value)
ImmutableDoubleDoubleMap
withAll(DoubleDoubleMap map)
-
Method Details
-
empty
ImmutableDoubleDoubleMap empty()- Since:
- 6.0
-
of
Same asempty()
. -
with
ImmutableDoubleDoubleMap with()Same asempty()
. -
of
Same aswith(double, double)
. -
with
-
ofAll
Same aswithAll(DoubleDoubleMap)
. -
withAll
-
from
<T> ImmutableDoubleDoubleMap from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)Creates anImmutableDoubleDoubleMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-