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 ImmutableFloatShortMapempty()<T> ImmutableFloatShortMapfrom(Iterable<T> iterable, FloatFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)Creates anImmutableFloatShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableFloatShortMapof()Same asempty().ImmutableFloatShortMapof(float key, short value)Same aswith(float, short).ImmutableFloatShortMapofAll(FloatShortMap map)Same aswithAll(FloatShortMap).ImmutableFloatShortMapwith()Same asempty().ImmutableFloatShortMapwith(float key, short value)ImmutableFloatShortMapwithAll(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 anImmutableFloatShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-