Interface ImmutableCharFloatMapFactory
public interface ImmutableCharFloatMapFactory
A factory which creates instances of type
ImmutableCharFloatMap.
This file was automatically generated from template file immutablePrimitivePrimitiveMapFactory.stg.- Since:
- 4.0.
-
Method Summary
Modifier and TypeMethodDescriptionempty()from(Iterable<T> iterable, CharFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction) Creates anImmutableCharFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.of()Same asempty().of(char key, float value) Same aswith(char, float).ofAll(CharFloatMap map) Same aswithAll(CharFloatMap).with()Same asempty().with(char key, float value) withAll(CharFloatMap map)
-
Method Details
-
empty
ImmutableCharFloatMap empty()- Since:
- 6.0
-
of
Same asempty(). -
with
ImmutableCharFloatMap with()Same asempty(). -
of
Same aswith(char, float). -
with
-
ofAll
Same aswithAll(CharFloatMap). -
withAll
-
from
<T> ImmutableCharFloatMap from(Iterable<T> iterable, CharFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction) Creates anImmutableCharFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-