Interface ImmutableCharDoubleMapFactory
-
- All Known Implementing Classes:
ImmutableCharDoubleMapFactoryImpl
public interface ImmutableCharDoubleMapFactory
A 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 ImmutableCharDoubleMap
empty()
<T> ImmutableCharDoubleMap
from(java.lang.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 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(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)
Creates anImmutableCharDoubleMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-
-