Interface ImmutableShortFloatMapFactory
- All Known Implementing Classes:
ImmutableShortFloatMapFactoryImpl
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 Type Method Description ImmutableShortFloatMapempty()<T> ImmutableShortFloatMapfrom(Iterable<T> iterable, ShortFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)Creates anImmutableShortFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableShortFloatMapof()Same asempty().ImmutableShortFloatMapof(short key, float value)Same aswith(short, float).ImmutableShortFloatMapofAll(ShortFloatMap map)Same aswithAll(ShortFloatMap).ImmutableShortFloatMapwith()Same asempty().ImmutableShortFloatMapwith(short key, float value)ImmutableShortFloatMapwithAll(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
-