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 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 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 anImmutableFloatCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-