Class ImmutableCharLongMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.immutable.primitive.ImmutableCharLongMapFactoryImpl
-
- All Implemented Interfaces:
ImmutableCharLongMapFactory
public class ImmutableCharLongMapFactoryImpl extends Object implements ImmutableCharLongMapFactory
ImmutableCharLongMapFactoryImpl is a factory implementation which creates instances of typeImmutableCharLongMap. This file was automatically generated from template file immutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 4.0.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableCharLongMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableCharLongMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableCharLongMapempty()<T> ImmutableCharLongMapfrom(Iterable<T> iterable, CharFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)ImmutableCharLongMapof()ImmutableCharLongMapof(char key, long value)ImmutableCharLongMapofAll(CharLongMap map)ImmutableCharLongMapwith()ImmutableCharLongMapwith(char key, long value)ImmutableCharLongMapwithAll(CharLongMap map)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableCharLongMapFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableCharLongMap empty()
- Specified by:
emptyin interfaceImmutableCharLongMapFactory
-
of
public ImmutableCharLongMap of()
- Specified by:
ofin interfaceImmutableCharLongMapFactory
-
with
public ImmutableCharLongMap with()
- Specified by:
within interfaceImmutableCharLongMapFactory
-
of
public ImmutableCharLongMap of(char key, long value)
- Specified by:
ofin interfaceImmutableCharLongMapFactory
-
with
public ImmutableCharLongMap with(char key, long value)
- Specified by:
within interfaceImmutableCharLongMapFactory
-
ofAll
public ImmutableCharLongMap ofAll(CharLongMap map)
- Specified by:
ofAllin interfaceImmutableCharLongMapFactory
-
withAll
public ImmutableCharLongMap withAll(CharLongMap map)
- Specified by:
withAllin interfaceImmutableCharLongMapFactory
-
from
public <T> ImmutableCharLongMap from(Iterable<T> iterable, CharFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)
- Specified by:
fromin interfaceImmutableCharLongMapFactory
-
-