Interface ImmutableObjectDoubleMapFactory
-
- All Known Implementing Classes:
ImmutableObjectDoubleMapFactoryImpl
public interface ImmutableObjectDoubleMapFactory
A factory which creates instances of typeImmutableObjectDoubleMap
. This file was automatically generated from template file immutableObjectPrimitiveMapFactory.stg.- Since:
- 4.0.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <K> ImmutableObjectDoubleMap<K>
empty()
<T,K>
ImmutableObjectDoubleMap<K>from(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, DoubleFunction<? super T> valueFunction)
Creates anImmutableObjectDoubleMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<K> ImmutableObjectDoubleMap<K>
of()
Same asempty()
.<K> ImmutableObjectDoubleMap<K>
of(K key, double value)
Same aswith(Object, double)
.<K> ImmutableObjectDoubleMap<K>
ofAll(ObjectDoubleMap<? extends K> map)
Same aswithAll(ObjectDoubleMap)
.<K> ImmutableObjectDoubleMap<K>
with()
Same asempty()
.<K> ImmutableObjectDoubleMap<K>
with(K key, double value)
<K> ImmutableObjectDoubleMap<K>
withAll(ObjectDoubleMap<? extends K> map)
-
-
-
Method Detail
-
empty
<K> ImmutableObjectDoubleMap<K> empty()
- Since:
- 6.0
-
of
<K> ImmutableObjectDoubleMap<K> of()
Same asempty()
.
-
with
<K> ImmutableObjectDoubleMap<K> with()
Same asempty()
.
-
of
<K> ImmutableObjectDoubleMap<K> of(K key, double value)
Same aswith(Object, double)
.
-
with
<K> ImmutableObjectDoubleMap<K> with(K key, double value)
-
ofAll
<K> ImmutableObjectDoubleMap<K> ofAll(ObjectDoubleMap<? extends K> map)
Same aswithAll(ObjectDoubleMap)
.
-
withAll
<K> ImmutableObjectDoubleMap<K> withAll(ObjectDoubleMap<? extends K> map)
-
from
<T,K> ImmutableObjectDoubleMap<K> from(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, DoubleFunction<? super T> valueFunction)
Creates anImmutableObjectDoubleMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-
-