Interface ImmutableLongDoubleMapFactory
-
public interface ImmutableLongDoubleMapFactoryA factory which creates instances of typeImmutableLongDoubleMap. 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 ImmutableLongDoubleMapempty()<T> ImmutableLongDoubleMapfrom(Iterable<T> iterable, LongFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)Creates anImmutableLongDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableLongDoubleMapof()Same asempty().ImmutableLongDoubleMapof(long key, double value)Same aswith(long, double).ImmutableLongDoubleMapofAll(LongDoubleMap map)Same aswithAll(LongDoubleMap).ImmutableLongDoubleMapwith()Same asempty().ImmutableLongDoubleMapwith(long key, double value)ImmutableLongDoubleMapwithAll(LongDoubleMap map)
-
-
-
Method Detail
-
empty
ImmutableLongDoubleMap empty()
- Since:
- 6.0
-
of
ImmutableLongDoubleMap of()
Same asempty().
-
with
ImmutableLongDoubleMap with()
Same asempty().
-
of
ImmutableLongDoubleMap of(long key, double value)
Same aswith(long, double).
-
with
ImmutableLongDoubleMap with(long key, double value)
-
ofAll
ImmutableLongDoubleMap ofAll(LongDoubleMap map)
Same aswithAll(LongDoubleMap).
-
withAll
ImmutableLongDoubleMap withAll(LongDoubleMap map)
-
from
<T> ImmutableLongDoubleMap from(Iterable<T> iterable, LongFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)
Creates anImmutableLongDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-
-