Interface ImmutableDoubleCharMapFactory
- All Known Implementing Classes:
ImmutableDoubleCharMapFactoryImpl
public interface ImmutableDoubleCharMapFactory
A factory which creates instances of type
ImmutableDoubleCharMap
.
This file was automatically generated from template file immutablePrimitivePrimitiveMapFactory.stg.- Since:
- 4.0.
-
Method Summary
Modifier and Type Method Description ImmutableDoubleCharMap
empty()
<T> ImmutableDoubleCharMap
from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
Creates anImmutableDoubleCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableDoubleCharMap
of()
Same asempty()
.ImmutableDoubleCharMap
of(double key, char value)
Same aswith(double, char)
.ImmutableDoubleCharMap
ofAll(DoubleCharMap map)
Same aswithAll(DoubleCharMap)
.ImmutableDoubleCharMap
with()
Same asempty()
.ImmutableDoubleCharMap
with(double key, char value)
ImmutableDoubleCharMap
withAll(DoubleCharMap map)
-
Method Details
-
empty
ImmutableDoubleCharMap empty()- Since:
- 6.0
-
of
Same asempty()
. -
with
ImmutableDoubleCharMap with()Same asempty()
. -
of
Same aswith(double, char)
. -
with
-
ofAll
Same aswithAll(DoubleCharMap)
. -
withAll
-
from
<T> ImmutableDoubleCharMap from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)Creates anImmutableDoubleCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-