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 ImmutableFloatCharMap
empty()
<T> ImmutableFloatCharMap
from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
Creates anImmutableFloatCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableFloatCharMap
of()
Same asempty()
.ImmutableFloatCharMap
of(float key, char value)
Same aswith(float, char)
.ImmutableFloatCharMap
ofAll(FloatCharMap map)
Same aswithAll(FloatCharMap)
.ImmutableFloatCharMap
with()
Same asempty()
.ImmutableFloatCharMap
with(float key, char value)
ImmutableFloatCharMap
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
-