Interface ImmutableShortDoubleMapFactory
-
public interface ImmutableShortDoubleMapFactoryA factory which creates instances of typeImmutableShortDoubleMap. 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 ImmutableShortDoubleMapempty()<T> ImmutableShortDoubleMapfrom(Iterable<T> iterable, ShortFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)Creates anImmutableShortDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableShortDoubleMapof()Same asempty().ImmutableShortDoubleMapof(short key, double value)Same aswith(short, double).ImmutableShortDoubleMapofAll(ShortDoubleMap map)Same aswithAll(ShortDoubleMap).ImmutableShortDoubleMapwith()Same asempty().ImmutableShortDoubleMapwith(short key, double value)ImmutableShortDoubleMapwithAll(ShortDoubleMap map)
-
-
-
Method Detail
-
empty
ImmutableShortDoubleMap empty()
- Since:
- 6.0
-
of
ImmutableShortDoubleMap of()
Same asempty().
-
with
ImmutableShortDoubleMap with()
Same asempty().
-
of
ImmutableShortDoubleMap of(short key, double value)
Same aswith(short, double).
-
with
ImmutableShortDoubleMap with(short key, double value)
-
ofAll
ImmutableShortDoubleMap ofAll(ShortDoubleMap map)
Same aswithAll(ShortDoubleMap).
-
withAll
ImmutableShortDoubleMap withAll(ShortDoubleMap map)
-
from
<T> ImmutableShortDoubleMap from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)
Creates anImmutableShortDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-
-