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