Class ImmutableCharByteMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.immutable.primitive.ImmutableCharByteMapFactoryImpl
-
- All Implemented Interfaces:
ImmutableCharByteMapFactory
public class ImmutableCharByteMapFactoryImpl extends Object implements ImmutableCharByteMapFactory
ImmutableCharByteMapFactoryImpl is a factory implementation which creates instances of typeImmutableCharByteMap. This file was automatically generated from template file immutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 4.0.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableCharByteMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableCharByteMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableCharByteMapempty()<T> ImmutableCharByteMapfrom(Iterable<T> iterable, CharFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)ImmutableCharByteMapof()ImmutableCharByteMapof(char key, byte value)ImmutableCharByteMapofAll(CharByteMap map)ImmutableCharByteMapwith()ImmutableCharByteMapwith(char key, byte value)ImmutableCharByteMapwithAll(CharByteMap map)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableCharByteMapFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableCharByteMap empty()
- Specified by:
emptyin interfaceImmutableCharByteMapFactory
-
of
public ImmutableCharByteMap of()
- Specified by:
ofin interfaceImmutableCharByteMapFactory
-
with
public ImmutableCharByteMap with()
- Specified by:
within interfaceImmutableCharByteMapFactory
-
of
public ImmutableCharByteMap of(char key, byte value)
- Specified by:
ofin interfaceImmutableCharByteMapFactory
-
with
public ImmutableCharByteMap with(char key, byte value)
- Specified by:
within interfaceImmutableCharByteMapFactory
-
ofAll
public ImmutableCharByteMap ofAll(CharByteMap map)
- Specified by:
ofAllin interfaceImmutableCharByteMapFactory
-
withAll
public ImmutableCharByteMap withAll(CharByteMap map)
- Specified by:
withAllin interfaceImmutableCharByteMapFactory
-
from
public <T> ImmutableCharByteMap from(Iterable<T> iterable, CharFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
- Specified by:
fromin interfaceImmutableCharByteMapFactory
-
-