Interface ImmutableDoubleLongMapFactory
public interface ImmutableDoubleLongMapFactory
A factory which creates instances of type
ImmutableDoubleLongMap.
This file was automatically generated from template file immutablePrimitivePrimitiveMapFactory.stg.- Since:
- 4.0.
-
Method Summary
Modifier and TypeMethodDescriptionempty()from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) Creates anImmutableDoubleLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.of()Same asempty().of(double key, long value) Same aswith(double, long).ofAll(DoubleLongMap map) Same aswithAll(DoubleLongMap).with()Same asempty().with(double key, long value) withAll(DoubleLongMap map)
-
Method Details
-
empty
ImmutableDoubleLongMap empty()- Since:
- 6.0
-
of
Same asempty(). -
with
ImmutableDoubleLongMap with()Same asempty(). -
of
Same aswith(double, long). -
with
-
ofAll
Same aswithAll(DoubleLongMap). -
withAll
-
from
<T> ImmutableDoubleLongMap from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) Creates anImmutableDoubleLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-