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