Interface ImmutableDoubleLongMapFactory
-
public interface ImmutableDoubleLongMapFactoryA 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 ImmutableDoubleLongMapempty()<T> ImmutableDoubleLongMapfrom(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)Creates anImmutableDoubleLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableDoubleLongMapof()Same asempty().ImmutableDoubleLongMapof(double key, long value)Same aswith(double, long).ImmutableDoubleLongMapofAll(DoubleLongMap map)Same aswithAll(DoubleLongMap).ImmutableDoubleLongMapwith()Same asempty().ImmutableDoubleLongMapwith(double key, long value)ImmutableDoubleLongMapwithAll(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(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)
Creates anImmutableDoubleLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-
-