Interface ImmutableDoubleShortMapFactory
-
- All Known Implementing Classes:
ImmutableDoubleShortMapFactoryImpl
public interface ImmutableDoubleShortMapFactory
A 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 ImmutableDoubleShortMap
empty()
<T> ImmutableDoubleShortMap
from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
Creates anImmutableDoubleShortMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableDoubleShortMap
of()
Same asempty()
.ImmutableDoubleShortMap
of(double key, short value)
Same aswith(double, short)
.ImmutableDoubleShortMap
ofAll(DoubleShortMap map)
Same aswithAll(DoubleShortMap)
.ImmutableDoubleShortMap
with()
Same asempty()
.ImmutableDoubleShortMap
with(double key, short value)
ImmutableDoubleShortMap
withAll(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(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
Creates anImmutableDoubleShortMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-
-