Interface ImmutableFloatCharMapFactory
-
- All Known Implementing Classes:
ImmutableFloatCharMapFactoryImpl
public interface ImmutableFloatCharMapFactory
A 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 ImmutableFloatCharMap
empty()
<T> ImmutableFloatCharMap
from(java.lang.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 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(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
Creates anImmutableFloatCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-
-