Interface ImmutableDoubleObjectMapFactory
-
public interface ImmutableDoubleObjectMapFactoryA factory which creates instances of typeImmutableDoubleObjectMap. This file was automatically generated from template file immutablePrimitiveObjectMapFactory.stg.- Since:
- 4.0.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <V> ImmutableDoubleObjectMap<V>empty()<T,V>
ImmutableDoubleObjectMap<V>from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)Creates anImmutableDoubleObjectMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<V> ImmutableDoubleObjectMap<V>of()Same asempty().<V> ImmutableDoubleObjectMap<V>of(double key, V value)Same aswith(double, Object).<V> ImmutableDoubleObjectMap<V>ofAll(DoubleObjectMap<? extends V> map)Same aswithAll(DoubleObjectMap).<V> ImmutableDoubleObjectMap<V>with()Same asempty().<V> ImmutableDoubleObjectMap<V>with(double key, V value)<V> ImmutableDoubleObjectMap<V>withAll(DoubleObjectMap<? extends V> map)
-
-
-
Method Detail
-
empty
<V> ImmutableDoubleObjectMap<V> empty()
- Since:
- 6.0
-
of
<V> ImmutableDoubleObjectMap<V> of()
Same asempty().
-
with
<V> ImmutableDoubleObjectMap<V> with()
Same asempty().
-
of
<V> ImmutableDoubleObjectMap<V> of(double key, V value)
Same aswith(double, Object).
-
with
<V> ImmutableDoubleObjectMap<V> with(double key, V value)
-
ofAll
<V> ImmutableDoubleObjectMap<V> ofAll(DoubleObjectMap<? extends V> map)
Same aswithAll(DoubleObjectMap).
-
withAll
<V> ImmutableDoubleObjectMap<V> withAll(DoubleObjectMap<? extends V> map)
-
from
<T,V> ImmutableDoubleObjectMap<V> from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)
Creates anImmutableDoubleObjectMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-
-