Class MutableByteCharMapFactoryImpl
java.lang.Object
org.eclipse.collections.impl.map.mutable.primitive.MutableByteCharMapFactoryImpl
- All Implemented Interfaces:
MutableByteCharMapFactory
MutableByteCharMapFactoryImpl is a factory implementation which creates instances of type
MutableByteCharMap
.
This file was automatically generated from template file mutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 6.0.
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionempty()
from
(Iterable<T> iterable, ByteFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) Creates anMutableByteCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.of()
Same asMutableByteCharMapFactory.empty()
.of
(byte key, char value) of
(byte key1, char value1, byte key2, char value2) of
(byte key1, char value1, byte key2, char value2, byte key3, char value3) of
(byte key1, char value1, byte key2, char value2, byte key3, char value3, byte key4, char value4) ofAll
(ByteCharMap map) ofInitialCapacity
(int capacity) Same asMutableByteCharMapFactory.empty()
.with()
Same asMutableByteCharMapFactory.empty()
.with
(byte key, char value) with
(byte key1, char value1, byte key2, char value2) with
(byte key1, char value1, byte key2, char value2, byte key3, char value3) with
(byte key1, char value1, byte key2, char value2, byte key3, char value3, byte key4, char value4) withAll
(ByteCharMap map) withInitialCapacity
(int capacity) Same asMutableByteCharMapFactory.empty()
.
-
Field Details
-
INSTANCE
-
-
Constructor Details
-
MutableByteCharMapFactoryImpl
public MutableByteCharMapFactoryImpl()
-
-
Method Details
-
empty
- Specified by:
empty
in interfaceMutableByteCharMapFactory
-
of
Description copied from interface:MutableByteCharMapFactory
Same asMutableByteCharMapFactory.empty()
.- Specified by:
of
in interfaceMutableByteCharMapFactory
-
with
Description copied from interface:MutableByteCharMapFactory
Same asMutableByteCharMapFactory.empty()
.- Specified by:
with
in interfaceMutableByteCharMapFactory
-
with
- Specified by:
with
in interfaceMutableByteCharMapFactory
-
of
- Specified by:
of
in interfaceMutableByteCharMapFactory
-
of
- Specified by:
of
in interfaceMutableByteCharMapFactory
-
with
- Specified by:
with
in interfaceMutableByteCharMapFactory
-
of
public MutableByteCharMap of(byte key1, char value1, byte key2, char value2, byte key3, char value3) - Specified by:
of
in interfaceMutableByteCharMapFactory
-
with
public MutableByteCharMap with(byte key1, char value1, byte key2, char value2, byte key3, char value3) - Specified by:
with
in interfaceMutableByteCharMapFactory
-
of
public MutableByteCharMap of(byte key1, char value1, byte key2, char value2, byte key3, char value3, byte key4, char value4) - Specified by:
of
in interfaceMutableByteCharMapFactory
-
with
public MutableByteCharMap with(byte key1, char value1, byte key2, char value2, byte key3, char value3, byte key4, char value4) - Specified by:
with
in interfaceMutableByteCharMapFactory
-
ofInitialCapacity
Description copied from interface:MutableByteCharMapFactory
Same asMutableByteCharMapFactory.empty()
. but takes in an initial capacity- Specified by:
ofInitialCapacity
in interfaceMutableByteCharMapFactory
-
withInitialCapacity
Description copied from interface:MutableByteCharMapFactory
Same asMutableByteCharMapFactory.empty()
. but takes in an initial capacity- Specified by:
withInitialCapacity
in interfaceMutableByteCharMapFactory
-
ofAll
Description copied from interface:MutableByteCharMapFactory
- Specified by:
ofAll
in interfaceMutableByteCharMapFactory
-
withAll
- Specified by:
withAll
in interfaceMutableByteCharMapFactory
-
from
public <T> MutableByteCharMap from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) Description copied from interface:MutableByteCharMapFactory
Creates anMutableByteCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Specified by:
from
in interfaceMutableByteCharMapFactory
-