Class ImmutableObjectLongMapFactoryImpl
java.lang.Object
org.eclipse.collections.impl.map.immutable.primitive.ImmutableObjectLongMapFactoryImpl
- All Implemented Interfaces:
ImmutableObjectLongMapFactory
public class ImmutableObjectLongMapFactoryImpl
extends Object
implements ImmutableObjectLongMapFactory
ImmutableObjectLongMapFactoryImpl is a factory implementation which creates instances of type
ImmutableObjectLongMap.
This file was automatically generated from template file immutableObjectPrimitiveMapFactoryImpl.stg.- Since:
- 4.0.
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescription<K> ImmutableObjectLongMap<K> empty()<T,K> ImmutableObjectLongMap <K> from(Iterable<T> iterable, Function<? super T, ? extends K> keyFunction, LongFunction<? super T> valueFunction) Creates anImmutableObjectLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<K> ImmutableObjectLongMap<K> of()<K> ImmutableObjectLongMap<K> of(K key, long value) <K> ImmutableObjectLongMap<K> ofAll(ObjectLongMap<? extends K> map) <K> ImmutableObjectLongMap<K> with()<K> ImmutableObjectLongMap<K> with(K key, long value) <K> ImmutableObjectLongMap<K> withAll(ObjectLongMap<? extends K> map)
-
Field Details
-
INSTANCE
-
-
Constructor Details
-
ImmutableObjectLongMapFactoryImpl
public ImmutableObjectLongMapFactoryImpl()
-
-
Method Details
-
empty
- Specified by:
emptyin interfaceImmutableObjectLongMapFactory
-
of
Description copied from interface:ImmutableObjectLongMapFactory- Specified by:
ofin interfaceImmutableObjectLongMapFactory
-
with
Description copied from interface:ImmutableObjectLongMapFactory- Specified by:
within interfaceImmutableObjectLongMapFactory
-
of
Description copied from interface:ImmutableObjectLongMapFactory- Specified by:
ofin interfaceImmutableObjectLongMapFactory
-
with
- Specified by:
within interfaceImmutableObjectLongMapFactory
-
ofAll
Description copied from interface:ImmutableObjectLongMapFactory- Specified by:
ofAllin interfaceImmutableObjectLongMapFactory
-
withAll
- Specified by:
withAllin interfaceImmutableObjectLongMapFactory
-
from
public <T,K> ImmutableObjectLongMap<K> from(Iterable<T> iterable, Function<? super T, ? extends K> keyFunction, LongFunction<? super T> valueFunction) Description copied from interface:ImmutableObjectLongMapFactoryCreates anImmutableObjectLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Specified by:
fromin interfaceImmutableObjectLongMapFactory
-