Interface ImmutableCharDoubleMapFactory
- All Known Implementing Classes:
ImmutableCharDoubleMapFactoryImpl
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 Type Method Description ImmutableCharDoubleMapempty()<T> ImmutableCharDoubleMapfrom(Iterable<T> iterable, CharFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)Creates anImmutableCharDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableCharDoubleMapof()Same asempty().ImmutableCharDoubleMapof(char key, double value)Same aswith(char, double).ImmutableCharDoubleMapofAll(CharDoubleMap map)Same aswithAll(CharDoubleMap).ImmutableCharDoubleMapwith()Same asempty().ImmutableCharDoubleMapwith(char key, double value)ImmutableCharDoubleMapwithAll(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
-