Interface ImmutableFloatShortMapFactory
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 TypeMethodDescriptionempty()from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction) Creates anImmutableFloatShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.of()Same asempty().of(float key, short value) Same aswith(float, short).ofAll(FloatShortMap map) Same aswithAll(FloatShortMap).with()Same asempty().with(float key, short value) 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 anImmutableFloatShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-