Interface ImmutableFloatShortMapFactory
-
public interface ImmutableFloatShortMapFactoryA factory which creates instances of typeImmutableFloatShortMap. This file was automatically generated from template file immutablePrimitivePrimitiveMapFactory.stg.- Since:
- 4.0.
-
-
Method Summary
All Methods Instance Methods Abstract Methods 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 Detail
-
empty
ImmutableFloatShortMap empty()
- Since:
- 6.0
-
of
ImmutableFloatShortMap of()
Same asempty().
-
with
ImmutableFloatShortMap with()
Same asempty().
-
of
ImmutableFloatShortMap of(float key, short value)
Same aswith(float, short).
-
with
ImmutableFloatShortMap with(float key, short value)
-
ofAll
ImmutableFloatShortMap ofAll(FloatShortMap map)
Same aswithAll(FloatShortMap).
-
withAll
ImmutableFloatShortMap withAll(FloatShortMap map)
-
from
<T> ImmutableFloatShortMap from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
Creates anImmutableFloatShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-
-