Interface ImmutableDoubleShortMapFactory
-
public interface ImmutableDoubleShortMapFactoryA factory which creates instances of typeImmutableDoubleShortMap. 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 ImmutableDoubleShortMapempty()<T> ImmutableDoubleShortMapfrom(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)Creates anImmutableDoubleShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableDoubleShortMapof()Same asempty().ImmutableDoubleShortMapof(double key, short value)Same aswith(double, short).ImmutableDoubleShortMapofAll(DoubleShortMap map)Same aswithAll(DoubleShortMap).ImmutableDoubleShortMapwith()Same asempty().ImmutableDoubleShortMapwith(double key, short value)ImmutableDoubleShortMapwithAll(DoubleShortMap map)
-
-
-
Method Detail
-
empty
ImmutableDoubleShortMap empty()
- Since:
- 6.0
-
of
ImmutableDoubleShortMap of()
Same asempty().
-
with
ImmutableDoubleShortMap with()
Same asempty().
-
of
ImmutableDoubleShortMap of(double key, short value)
Same aswith(double, short).
-
with
ImmutableDoubleShortMap with(double key, short value)
-
ofAll
ImmutableDoubleShortMap ofAll(DoubleShortMap map)
Same aswithAll(DoubleShortMap).
-
withAll
ImmutableDoubleShortMap withAll(DoubleShortMap map)
-
from
<T> ImmutableDoubleShortMap from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
Creates anImmutableDoubleShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-
-