Class ImmutableByteCharMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.immutable.primitive.ImmutableByteCharMapFactoryImpl
-
- All Implemented Interfaces:
ImmutableByteCharMapFactory
public class ImmutableByteCharMapFactoryImpl extends Object implements ImmutableByteCharMapFactory
ImmutableByteCharMapFactoryImpl is a factory implementation which creates instances of typeImmutableByteCharMap. This file was automatically generated from template file immutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 4.0.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableByteCharMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableByteCharMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableByteCharMapempty()<T> ImmutableByteCharMapfrom(Iterable<T> iterable, ByteFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)ImmutableByteCharMapof()ImmutableByteCharMapof(byte key, char value)ImmutableByteCharMapofAll(ByteCharMap map)ImmutableByteCharMapwith()ImmutableByteCharMapwith(byte key, char value)ImmutableByteCharMapwithAll(ByteCharMap map)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableByteCharMapFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableByteCharMap empty()
- Specified by:
emptyin interfaceImmutableByteCharMapFactory
-
of
public ImmutableByteCharMap of()
- Specified by:
ofin interfaceImmutableByteCharMapFactory
-
with
public ImmutableByteCharMap with()
- Specified by:
within interfaceImmutableByteCharMapFactory
-
of
public ImmutableByteCharMap of(byte key, char value)
- Specified by:
ofin interfaceImmutableByteCharMapFactory
-
with
public ImmutableByteCharMap with(byte key, char value)
- Specified by:
within interfaceImmutableByteCharMapFactory
-
ofAll
public ImmutableByteCharMap ofAll(ByteCharMap map)
- Specified by:
ofAllin interfaceImmutableByteCharMapFactory
-
withAll
public ImmutableByteCharMap withAll(ByteCharMap map)
- Specified by:
withAllin interfaceImmutableByteCharMapFactory
-
from
public <T> ImmutableByteCharMap from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
- Specified by:
fromin interfaceImmutableByteCharMapFactory
-
-