Interface ImmutableLongDoubleMapFactory
-
- All Known Implementing Classes:
ImmutableLongDoubleMapFactoryImpl
public interface ImmutableLongDoubleMapFactory
A 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 ImmutableLongDoubleMap
empty()
<T> ImmutableLongDoubleMap
from(java.lang.Iterable<T> iterable, LongFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)
Creates anImmutableLongDoubleMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableLongDoubleMap
of()
Same asempty()
.ImmutableLongDoubleMap
of(long key, double value)
Same aswith(long, double)
.ImmutableLongDoubleMap
ofAll(LongDoubleMap map)
Same aswithAll(LongDoubleMap)
.ImmutableLongDoubleMap
with()
Same asempty()
.ImmutableLongDoubleMap
with(long key, double value)
ImmutableLongDoubleMap
withAll(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(java.lang.Iterable<T> iterable, LongFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)
Creates anImmutableLongDoubleMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-
-