Class ImmutableCharCharMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.immutable.primitive.ImmutableCharCharMapFactoryImpl
-
- All Implemented Interfaces:
ImmutableCharCharMapFactory
public class ImmutableCharCharMapFactoryImpl extends Object implements ImmutableCharCharMapFactory
ImmutableCharCharMapFactoryImpl is a factory implementation which creates instances of typeImmutableCharCharMap. This file was automatically generated from template file immutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 4.0.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableCharCharMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableCharCharMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableCharCharMapempty()<T> ImmutableCharCharMapfrom(Iterable<T> iterable, CharFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)ImmutableCharCharMapof()ImmutableCharCharMapof(char key, char value)ImmutableCharCharMapofAll(CharCharMap map)ImmutableCharCharMapwith()ImmutableCharCharMapwith(char key, char value)ImmutableCharCharMapwithAll(CharCharMap map)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableCharCharMapFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableCharCharMap empty()
- Specified by:
emptyin interfaceImmutableCharCharMapFactory
-
of
public ImmutableCharCharMap of()
- Specified by:
ofin interfaceImmutableCharCharMapFactory
-
with
public ImmutableCharCharMap with()
- Specified by:
within interfaceImmutableCharCharMapFactory
-
of
public ImmutableCharCharMap of(char key, char value)
- Specified by:
ofin interfaceImmutableCharCharMapFactory
-
with
public ImmutableCharCharMap with(char key, char value)
- Specified by:
within interfaceImmutableCharCharMapFactory
-
ofAll
public ImmutableCharCharMap ofAll(CharCharMap map)
- Specified by:
ofAllin interfaceImmutableCharCharMapFactory
-
withAll
public ImmutableCharCharMap withAll(CharCharMap map)
- Specified by:
withAllin interfaceImmutableCharCharMapFactory
-
from
public <T> ImmutableCharCharMap from(Iterable<T> iterable, CharFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
- Specified by:
fromin interfaceImmutableCharCharMapFactory
-
-