Interface ImmutableDoubleLongMapFactory
-
- All Known Implementing Classes:
ImmutableDoubleLongMapFactoryImpl
public interface ImmutableDoubleLongMapFactory
A factory which creates instances of typeImmutableDoubleLongMap
. 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 ImmutableDoubleLongMap
empty()
<T> ImmutableDoubleLongMap
from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)
Creates anImmutableDoubleLongMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableDoubleLongMap
of()
Same asempty()
.ImmutableDoubleLongMap
of(double key, long value)
Same aswith(double, long)
.ImmutableDoubleLongMap
ofAll(DoubleLongMap map)
Same aswithAll(DoubleLongMap)
.ImmutableDoubleLongMap
with()
Same asempty()
.ImmutableDoubleLongMap
with(double key, long value)
ImmutableDoubleLongMap
withAll(DoubleLongMap map)
-
-
-
Method Detail
-
empty
ImmutableDoubleLongMap empty()
- Since:
- 6.0
-
of
ImmutableDoubleLongMap of()
Same asempty()
.
-
with
ImmutableDoubleLongMap with()
Same asempty()
.
-
of
ImmutableDoubleLongMap of(double key, long value)
Same aswith(double, long)
.
-
with
ImmutableDoubleLongMap with(double key, long value)
-
ofAll
ImmutableDoubleLongMap ofAll(DoubleLongMap map)
Same aswithAll(DoubleLongMap)
.
-
withAll
ImmutableDoubleLongMap withAll(DoubleLongMap map)
-
from
<T> ImmutableDoubleLongMap from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)
Creates anImmutableDoubleLongMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-
-