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