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