Interface ImmutableFloatCharMapFactory
- All Known Implementing Classes:
ImmutableFloatCharMapFactoryImpl
public interface ImmutableFloatCharMapFactory
A factory which creates instances of type
ImmutableFloatCharMap
.
This file was automatically generated from template file immutablePrimitivePrimitiveMapFactory.stg.- Since:
- 4.0.
-
Method Summary
Modifier and TypeMethodDescriptionempty()
from
(Iterable<T> iterable, FloatFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) Creates anImmutableFloatCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.of()
Same asempty()
.of
(float key, char value) Same aswith(float, char)
.ofAll
(FloatCharMap map) Same aswithAll(FloatCharMap)
.with()
Same asempty()
.with
(float key, char value) withAll
(FloatCharMap map)
-
Method Details
-
empty
ImmutableFloatCharMap empty()- Since:
- 6.0
-
of
Same asempty()
. -
with
ImmutableFloatCharMap with()Same asempty()
. -
of
Same aswith(float, char)
. -
with
-
ofAll
Same aswithAll(FloatCharMap)
. -
withAll
-
from
<T> ImmutableFloatCharMap from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) Creates anImmutableFloatCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-