Interface ImmutableCharFloatMapFactory
- All Known Implementing Classes:
ImmutableCharFloatMapFactoryImpl
public interface ImmutableCharFloatMapFactory
A factory which creates instances of type
ImmutableCharFloatMap
.
This file was automatically generated from template file immutablePrimitivePrimitiveMapFactory.stg.- Since:
- 4.0.
-
Method Summary
Modifier and Type Method Description ImmutableCharFloatMap
empty()
<T> ImmutableCharFloatMap
from(Iterable<T> iterable, CharFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)
Creates anImmutableCharFloatMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableCharFloatMap
of()
Same asempty()
.ImmutableCharFloatMap
of(char key, float value)
Same aswith(char, float)
.ImmutableCharFloatMap
ofAll(CharFloatMap map)
Same aswithAll(CharFloatMap)
.ImmutableCharFloatMap
with()
Same asempty()
.ImmutableCharFloatMap
with(char key, float value)
ImmutableCharFloatMap
withAll(CharFloatMap map)
-
Method Details
-
empty
ImmutableCharFloatMap empty()- Since:
- 6.0
-
of
Same asempty()
. -
with
ImmutableCharFloatMap with()Same asempty()
. -
of
Same aswith(char, float)
. -
with
-
ofAll
Same aswithAll(CharFloatMap)
. -
withAll
-
from
<T> ImmutableCharFloatMap from(Iterable<T> iterable, CharFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)Creates anImmutableCharFloatMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-