Interface ImmutableShortFloatMapFactory
public interface ImmutableShortFloatMapFactory
A factory which creates instances of type
ImmutableShortFloatMap.
This file was automatically generated from template file immutablePrimitivePrimitiveMapFactory.stg.- Since:
- 4.0.
-
Method Summary
Modifier and TypeMethodDescriptionempty()from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction) Creates anImmutableShortFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.of()Same asempty().of(short key, float value) Same aswith(short, float).ofAll(ShortFloatMap map) Same aswithAll(ShortFloatMap).with()Same asempty().with(short key, float value) withAll(ShortFloatMap map)
-
Method Details
-
empty
ImmutableShortFloatMap empty()- Since:
- 6.0
-
of
Same asempty(). -
with
ImmutableShortFloatMap with()Same asempty(). -
of
Same aswith(short, float). -
with
-
ofAll
Same aswithAll(ShortFloatMap). -
withAll
-
from
<T> ImmutableShortFloatMap from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction) Creates anImmutableShortFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-