Interface ImmutableFloatCharMapFactory
-
public interface ImmutableFloatCharMapFactoryA factory which creates instances of typeImmutableFloatCharMap. 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 ImmutableFloatCharMapempty()<T> ImmutableFloatCharMapfrom(Iterable<T> iterable, FloatFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)Creates anImmutableFloatCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableFloatCharMapof()Same asempty().ImmutableFloatCharMapof(float key, char value)Same aswith(float, char).ImmutableFloatCharMapofAll(FloatCharMap map)Same aswithAll(FloatCharMap).ImmutableFloatCharMapwith()Same asempty().ImmutableFloatCharMapwith(float key, char value)ImmutableFloatCharMapwithAll(FloatCharMap map)
-
-
-
Method Detail
-
empty
ImmutableFloatCharMap empty()
- Since:
- 6.0
-
of
ImmutableFloatCharMap of()
Same asempty().
-
with
ImmutableFloatCharMap with()
Same asempty().
-
of
ImmutableFloatCharMap of(float key, char value)
Same aswith(float, char).
-
with
ImmutableFloatCharMap with(float key, char value)
-
ofAll
ImmutableFloatCharMap ofAll(FloatCharMap map)
Same aswithAll(FloatCharMap).
-
withAll
ImmutableFloatCharMap withAll(FloatCharMap map)
-
from
<T> ImmutableFloatCharMap from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
Creates anImmutableFloatCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-
-