Interface ImmutableDoubleCharMapFactory
public interface ImmutableDoubleCharMapFactory
A factory which creates instances of type
ImmutableDoubleCharMap.
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, CharFunction<? super T> valueFunction) Creates anImmutableDoubleCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.of()Same asempty().of(double key, char value) Same aswith(double, char).ofAll(DoubleCharMap map) Same aswithAll(DoubleCharMap).with()Same asempty().with(double key, char value) withAll(DoubleCharMap map)
-
Method Details
-
empty
ImmutableDoubleCharMap empty()- Since:
- 6.0
-
of
Same asempty(). -
with
ImmutableDoubleCharMap with()Same asempty(). -
of
Same aswith(double, char). -
with
-
ofAll
Same aswithAll(DoubleCharMap). -
withAll
-
from
<T> ImmutableDoubleCharMap from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) Creates anImmutableDoubleCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-