Class MutableByteCharMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.mutable.primitive.MutableByteCharMapFactoryImpl
-
- All Implemented Interfaces:
MutableByteCharMapFactory
public class MutableByteCharMapFactoryImpl extends java.lang.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(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)Creates anMutableByteCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableByteCharMapof()Same asMutableByteCharMapFactory.empty().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)Same asMutableByteCharMapFactory.empty().MutableByteCharMapwith()Same asMutableByteCharMapFactory.empty().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)Same asMutableByteCharMapFactory.empty().
-
-
-
Field Detail
-
INSTANCE
public static final MutableByteCharMapFactory INSTANCE
-
-
Method Detail
-
empty
public MutableByteCharMap empty()
- Specified by:
emptyin interfaceMutableByteCharMapFactory
-
of
public MutableByteCharMap of()
Description copied from interface:MutableByteCharMapFactorySame asMutableByteCharMapFactory.empty().- Specified by:
ofin interfaceMutableByteCharMapFactory
-
with
public MutableByteCharMap with()
Description copied from interface:MutableByteCharMapFactorySame asMutableByteCharMapFactory.empty().- 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)
Description copied from interface:MutableByteCharMapFactorySame asMutableByteCharMapFactory.empty(). but takes in an initial capacity- Specified by:
ofInitialCapacityin interfaceMutableByteCharMapFactory
-
withInitialCapacity
public MutableByteCharMap withInitialCapacity(int capacity)
Description copied from interface:MutableByteCharMapFactorySame asMutableByteCharMapFactory.empty(). but takes in an initial capacity- Specified by:
withInitialCapacityin interfaceMutableByteCharMapFactory
-
ofAll
public MutableByteCharMap ofAll(ByteCharMap map)
Description copied from interface:MutableByteCharMapFactory- Specified by:
ofAllin interfaceMutableByteCharMapFactory
-
withAll
public MutableByteCharMap withAll(ByteCharMap map)
- Specified by:
withAllin interfaceMutableByteCharMapFactory
-
from
public <T> MutableByteCharMap from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
Description copied from interface:MutableByteCharMapFactoryCreates anMutableByteCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Specified by:
fromin interfaceMutableByteCharMapFactory
-
-