Class ImmutableIntLongMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.immutable.primitive.ImmutableIntLongMapFactoryImpl
-
- All Implemented Interfaces:
ImmutableIntLongMapFactory
public class ImmutableIntLongMapFactoryImpl extends Object implements ImmutableIntLongMapFactory
ImmutableIntLongMapFactoryImpl is a factory implementation which creates instances of typeImmutableIntLongMap. This file was automatically generated from template file immutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 4.0.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableIntLongMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableIntLongMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableIntLongMapempty()<T> ImmutableIntLongMapfrom(Iterable<T> iterable, IntFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)ImmutableIntLongMapof()ImmutableIntLongMapof(int key, long value)ImmutableIntLongMapofAll(IntLongMap map)ImmutableIntLongMapwith()ImmutableIntLongMapwith(int key, long value)ImmutableIntLongMapwithAll(IntLongMap map)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableIntLongMapFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableIntLongMap empty()
- Specified by:
emptyin interfaceImmutableIntLongMapFactory
-
of
public ImmutableIntLongMap of()
- Specified by:
ofin interfaceImmutableIntLongMapFactory
-
with
public ImmutableIntLongMap with()
- Specified by:
within interfaceImmutableIntLongMapFactory
-
of
public ImmutableIntLongMap of(int key, long value)
- Specified by:
ofin interfaceImmutableIntLongMapFactory
-
with
public ImmutableIntLongMap with(int key, long value)
- Specified by:
within interfaceImmutableIntLongMapFactory
-
ofAll
public ImmutableIntLongMap ofAll(IntLongMap map)
- Specified by:
ofAllin interfaceImmutableIntLongMapFactory
-
withAll
public ImmutableIntLongMap withAll(IntLongMap map)
- Specified by:
withAllin interfaceImmutableIntLongMapFactory
-
from
public <T> ImmutableIntLongMap from(Iterable<T> iterable, IntFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)
- Specified by:
fromin interfaceImmutableIntLongMapFactory
-
-