Interface ImmutableCharFloatMapFactory
-
public interface ImmutableCharFloatMapFactoryA factory which creates instances of typeImmutableCharFloatMap. 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 ImmutableCharFloatMapempty()<T> ImmutableCharFloatMapfrom(Iterable<T> iterable, CharFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)Creates anImmutableCharFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableCharFloatMapof()Same asempty().ImmutableCharFloatMapof(char key, float value)Same aswith(char, float).ImmutableCharFloatMapofAll(CharFloatMap map)Same aswithAll(CharFloatMap).ImmutableCharFloatMapwith()Same asempty().ImmutableCharFloatMapwith(char key, float value)ImmutableCharFloatMapwithAll(CharFloatMap map)
-
-
-
Method Detail
-
empty
ImmutableCharFloatMap empty()
- Since:
- 6.0
-
of
ImmutableCharFloatMap of()
Same asempty().
-
with
ImmutableCharFloatMap with()
Same asempty().
-
of
ImmutableCharFloatMap of(char key, float value)
Same aswith(char, float).
-
with
ImmutableCharFloatMap with(char key, float value)
-
ofAll
ImmutableCharFloatMap ofAll(CharFloatMap map)
Same aswithAll(CharFloatMap).
-
withAll
ImmutableCharFloatMap withAll(CharFloatMap map)
-
from
<T> ImmutableCharFloatMap from(Iterable<T> iterable, CharFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)
Creates anImmutableCharFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-
-