Class MutableByteCharMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.mutable.primitive.MutableByteCharMapFactoryImpl
-
- All Implemented Interfaces:
MutableByteCharMapFactory
public class MutableByteCharMapFactoryImpl extends Object implements MutableByteCharMapFactory
MutableByteCharMapFactoryImpl is a factory implementation which creates instances of typeMutableByteCharMap. This file was automatically generated from template file mutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 6.0.
-
-
Field Summary
Fields Modifier and Type Field Description static MutableByteCharMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description MutableByteCharMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableByteCharMapempty()<T> MutableByteCharMapfrom(Iterable<T> iterable, ByteFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)MutableByteCharMapof()MutableByteCharMapof(byte key, char value)MutableByteCharMapof(byte key1, char value1, byte key2, char value2)MutableByteCharMapof(byte key1, char value1, byte key2, char value2, byte key3, char value3)MutableByteCharMapof(byte key1, char value1, byte key2, char value2, byte key3, char value3, byte key4, char value4)MutableByteCharMapofAll(ByteCharMap map)MutableByteCharMapofInitialCapacity(int capacity)MutableByteCharMapwith()MutableByteCharMapwith(byte key, char value)MutableByteCharMapwith(byte key1, char value1, byte key2, char value2)MutableByteCharMapwith(byte key1, char value1, byte key2, char value2, byte key3, char value3)MutableByteCharMapwith(byte key1, char value1, byte key2, char value2, byte key3, char value3, byte key4, char value4)MutableByteCharMapwithAll(ByteCharMap map)MutableByteCharMapwithInitialCapacity(int capacity)
-
-
-
Field Detail
-
INSTANCE
public static final MutableByteCharMapFactory INSTANCE
-
-
Method Detail
-
empty
public MutableByteCharMap empty()
- Specified by:
emptyin interfaceMutableByteCharMapFactory
-
of
public MutableByteCharMap of()
- Specified by:
ofin interfaceMutableByteCharMapFactory
-
with
public MutableByteCharMap with()
- Specified by:
within interfaceMutableByteCharMapFactory
-
with
public MutableByteCharMap with(byte key, char value)
- Specified by:
within interfaceMutableByteCharMapFactory
-
of
public MutableByteCharMap of(byte key, char value)
- Specified by:
ofin interfaceMutableByteCharMapFactory
-
of
public MutableByteCharMap of(byte key1, char value1, byte key2, char value2)
- Specified by:
ofin interfaceMutableByteCharMapFactory
-
with
public MutableByteCharMap with(byte key1, char value1, byte key2, char value2)
- Specified by:
within interfaceMutableByteCharMapFactory
-
of
public MutableByteCharMap of(byte key1, char value1, byte key2, char value2, byte key3, char value3)
- Specified by:
ofin interfaceMutableByteCharMapFactory
-
with
public MutableByteCharMap with(byte key1, char value1, byte key2, char value2, byte key3, char value3)
- Specified by:
within interfaceMutableByteCharMapFactory
-
of
public MutableByteCharMap of(byte key1, char value1, byte key2, char value2, byte key3, char value3, byte key4, char value4)
- Specified by:
ofin interfaceMutableByteCharMapFactory
-
with
public MutableByteCharMap with(byte key1, char value1, byte key2, char value2, byte key3, char value3, byte key4, char value4)
- Specified by:
within interfaceMutableByteCharMapFactory
-
ofInitialCapacity
public MutableByteCharMap ofInitialCapacity(int capacity)
- Specified by:
ofInitialCapacityin interfaceMutableByteCharMapFactory
-
withInitialCapacity
public MutableByteCharMap withInitialCapacity(int capacity)
- Specified by:
withInitialCapacityin interfaceMutableByteCharMapFactory
-
ofAll
public MutableByteCharMap ofAll(ByteCharMap map)
- Specified by:
ofAllin interfaceMutableByteCharMapFactory
-
withAll
public MutableByteCharMap withAll(ByteCharMap map)
- Specified by:
withAllin interfaceMutableByteCharMapFactory
-
from
public <T> MutableByteCharMap from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
- Specified by:
fromin interfaceMutableByteCharMapFactory
-
-