Class ImmutableLongLongMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.immutable.primitive.ImmutableLongLongMapFactoryImpl
-
- All Implemented Interfaces:
ImmutableLongLongMapFactory
public class ImmutableLongLongMapFactoryImpl extends Object implements ImmutableLongLongMapFactory
ImmutableLongLongMapFactoryImpl is a factory implementation which creates instances of typeImmutableLongLongMap. This file was automatically generated from template file immutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 4.0.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableLongLongMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableLongLongMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableLongLongMapempty()<T> ImmutableLongLongMapfrom(Iterable<T> iterable, LongFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)ImmutableLongLongMapof()ImmutableLongLongMapof(long key, long value)ImmutableLongLongMapofAll(LongLongMap map)ImmutableLongLongMapwith()ImmutableLongLongMapwith(long key, long value)ImmutableLongLongMapwithAll(LongLongMap map)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableLongLongMapFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableLongLongMap empty()
- Specified by:
emptyin interfaceImmutableLongLongMapFactory
-
of
public ImmutableLongLongMap of()
- Specified by:
ofin interfaceImmutableLongLongMapFactory
-
with
public ImmutableLongLongMap with()
- Specified by:
within interfaceImmutableLongLongMapFactory
-
of
public ImmutableLongLongMap of(long key, long value)
- Specified by:
ofin interfaceImmutableLongLongMapFactory
-
with
public ImmutableLongLongMap with(long key, long value)
- Specified by:
within interfaceImmutableLongLongMapFactory
-
ofAll
public ImmutableLongLongMap ofAll(LongLongMap map)
- Specified by:
ofAllin interfaceImmutableLongLongMapFactory
-
withAll
public ImmutableLongLongMap withAll(LongLongMap map)
- Specified by:
withAllin interfaceImmutableLongLongMapFactory
-
from
public <T> ImmutableLongLongMap from(Iterable<T> iterable, LongFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)
- Specified by:
fromin interfaceImmutableLongLongMapFactory
-
-