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