Interface ImmutableCharDoubleMapFactory
-
public interface ImmutableCharDoubleMapFactoryA factory which creates instances of typeImmutableCharDoubleMap. This file was automatically generated from template file immutablePrimitivePrimitiveMapFactory.stg.- Since:
- 4.0.
-
-
Method Summary
All Methods Instance Methods Abstract Methods 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 Detail
-
empty
ImmutableCharDoubleMap empty()
- Since:
- 6.0
-
of
ImmutableCharDoubleMap of()
Same asempty().
-
with
ImmutableCharDoubleMap with()
Same asempty().
-
of
ImmutableCharDoubleMap of(char key, double value)
Same aswith(char, double).
-
with
ImmutableCharDoubleMap with(char key, double value)
-
ofAll
ImmutableCharDoubleMap ofAll(CharDoubleMap map)
Same aswithAll(CharDoubleMap).
-
withAll
ImmutableCharDoubleMap withAll(CharDoubleMap map)
-
from
<T> ImmutableCharDoubleMap from(Iterable<T> iterable, CharFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)
Creates anImmutableCharDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-
-