Interface ImmutableDoubleShortMapFactory
- All Known Implementing Classes:
ImmutableDoubleShortMapFactoryImpl
public interface ImmutableDoubleShortMapFactory
A factory which creates instances of type
ImmutableDoubleShortMap.
This file was automatically generated from template file immutablePrimitivePrimitiveMapFactory.stg.- Since:
- 4.0.
-
Method Summary
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 Details
-
empty
ImmutableDoubleShortMap empty()- Since:
- 6.0
-
of
Same asempty(). -
with
ImmutableDoubleShortMap with()Same asempty(). -
of
Same aswith(double, short). -
with
-
ofAll
Same aswithAll(DoubleShortMap). -
withAll
-
from
<T> ImmutableDoubleShortMap from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)Creates anImmutableDoubleShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-