Interface ImmutableDoubleLongMapFactory
- All Known Implementing Classes:
ImmutableDoubleLongMapFactoryImpl
public interface ImmutableDoubleLongMapFactory
A factory which creates instances of type
ImmutableDoubleLongMap
.
This file was automatically generated from template file immutablePrimitivePrimitiveMapFactory.stg.- Since:
- 4.0.
-
Method Summary
Modifier and Type Method Description ImmutableDoubleLongMap
empty()
<T> ImmutableDoubleLongMap
from(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 Details
-
empty
ImmutableDoubleLongMap empty()- Since:
- 6.0
-
of
Same asempty()
. -
with
ImmutableDoubleLongMap with()Same asempty()
. -
of
Same aswith(double, long)
. -
with
-
ofAll
Same aswithAll(DoubleLongMap)
. -
withAll
-
from
<T> ImmutableDoubleLongMap from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)Creates anImmutableDoubleLongMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-