Class ImmutableIntCharMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.immutable.primitive.ImmutableIntCharMapFactoryImpl
-
- All Implemented Interfaces:
ImmutableIntCharMapFactory
public class ImmutableIntCharMapFactoryImpl extends Object implements ImmutableIntCharMapFactory
ImmutableIntCharMapFactoryImpl is a factory implementation which creates instances of typeImmutableIntCharMap. This file was automatically generated from template file immutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 4.0.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableIntCharMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableIntCharMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableIntCharMapempty()<T> ImmutableIntCharMapfrom(Iterable<T> iterable, IntFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)ImmutableIntCharMapof()ImmutableIntCharMapof(int key, char value)ImmutableIntCharMapofAll(IntCharMap map)ImmutableIntCharMapwith()ImmutableIntCharMapwith(int key, char value)ImmutableIntCharMapwithAll(IntCharMap map)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableIntCharMapFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableIntCharMap empty()
- Specified by:
emptyin interfaceImmutableIntCharMapFactory
-
of
public ImmutableIntCharMap of()
- Specified by:
ofin interfaceImmutableIntCharMapFactory
-
with
public ImmutableIntCharMap with()
- Specified by:
within interfaceImmutableIntCharMapFactory
-
of
public ImmutableIntCharMap of(int key, char value)
- Specified by:
ofin interfaceImmutableIntCharMapFactory
-
with
public ImmutableIntCharMap with(int key, char value)
- Specified by:
within interfaceImmutableIntCharMapFactory
-
ofAll
public ImmutableIntCharMap ofAll(IntCharMap map)
- Specified by:
ofAllin interfaceImmutableIntCharMapFactory
-
withAll
public ImmutableIntCharMap withAll(IntCharMap map)
- Specified by:
withAllin interfaceImmutableIntCharMapFactory
-
from
public <T> ImmutableIntCharMap from(Iterable<T> iterable, IntFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
- Specified by:
fromin interfaceImmutableIntCharMapFactory
-
-