Class ImmutableObjectDoubleMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.immutable.primitive.ImmutableObjectDoubleMapFactoryImpl
-
- All Implemented Interfaces:
ImmutableObjectDoubleMapFactory
public class ImmutableObjectDoubleMapFactoryImpl extends Object implements ImmutableObjectDoubleMapFactory
ImmutableObjectDoubleMapFactoryImpl is a factory implementation which creates instances of typeImmutableObjectDoubleMap. This file was automatically generated from template file immutableObjectPrimitiveMapFactoryImpl.stg.- Since:
- 4.0.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableObjectDoubleMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableObjectDoubleMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <K> ImmutableObjectDoubleMap<K>empty()<T,K>
ImmutableObjectDoubleMap<K>from(Iterable<T> iterable, Function<? super T,? extends K> keyFunction, DoubleFunction<? super T> valueFunction)<K> ImmutableObjectDoubleMap<K>of()<K> ImmutableObjectDoubleMap<K>of(K key, double value)<K> ImmutableObjectDoubleMap<K>ofAll(ObjectDoubleMap<? extends K> map)<K> ImmutableObjectDoubleMap<K>with()<K> ImmutableObjectDoubleMap<K>with(K key, double value)<K> ImmutableObjectDoubleMap<K>withAll(ObjectDoubleMap<? extends K> map)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableObjectDoubleMapFactory INSTANCE
-
-
Method Detail
-
empty
public <K> ImmutableObjectDoubleMap<K> empty()
- Specified by:
emptyin interfaceImmutableObjectDoubleMapFactory
-
of
public <K> ImmutableObjectDoubleMap<K> of()
- Specified by:
ofin interfaceImmutableObjectDoubleMapFactory
-
with
public <K> ImmutableObjectDoubleMap<K> with()
- Specified by:
within interfaceImmutableObjectDoubleMapFactory
-
of
public <K> ImmutableObjectDoubleMap<K> of(K key, double value)
- Specified by:
ofin interfaceImmutableObjectDoubleMapFactory
-
with
public <K> ImmutableObjectDoubleMap<K> with(K key, double value)
- Specified by:
within interfaceImmutableObjectDoubleMapFactory
-
ofAll
public <K> ImmutableObjectDoubleMap<K> ofAll(ObjectDoubleMap<? extends K> map)
- Specified by:
ofAllin interfaceImmutableObjectDoubleMapFactory
-
withAll
public <K> ImmutableObjectDoubleMap<K> withAll(ObjectDoubleMap<? extends K> map)
- Specified by:
withAllin interfaceImmutableObjectDoubleMapFactory
-
from
public <T,K> ImmutableObjectDoubleMap<K> from(Iterable<T> iterable, Function<? super T,? extends K> keyFunction, DoubleFunction<? super T> valueFunction)
- Specified by:
fromin interfaceImmutableObjectDoubleMapFactory
-
-