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 ImmutableCharDoubleMap
empty()
<T> ImmutableCharDoubleMap
from(Iterable<T> iterable, CharFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)
Creates anImmutableCharDoubleMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableCharDoubleMap
of()
Same asempty()
.ImmutableCharDoubleMap
of(char key, double value)
Same aswith(char, double)
.ImmutableCharDoubleMap
ofAll(CharDoubleMap map)
Same aswithAll(CharDoubleMap)
.ImmutableCharDoubleMap
with()
Same asempty()
.ImmutableCharDoubleMap
with(char key, double value)
ImmutableCharDoubleMap
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 anImmutableCharDoubleMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-