Class MutableIntCharMapFactoryImpl
java.lang.Object
org.eclipse.collections.impl.map.mutable.primitive.MutableIntCharMapFactoryImpl
- All Implemented Interfaces:
MutableIntCharMapFactory
MutableIntCharMapFactoryImpl is a factory implementation which creates instances of type
MutableIntCharMap
.
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, IntFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) Creates anMutableIntCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.of()
Same asMutableIntCharMapFactory.empty()
.of
(int key, char value) of
(int key1, char value1, int key2, char value2) of
(int key1, char value1, int key2, char value2, int key3, char value3) of
(int key1, char value1, int key2, char value2, int key3, char value3, int key4, char value4) ofAll
(IntCharMap map) ofInitialCapacity
(int capacity) Same asMutableIntCharMapFactory.empty()
.with()
Same asMutableIntCharMapFactory.empty()
.with
(int key, char value) with
(int key1, char value1, int key2, char value2) with
(int key1, char value1, int key2, char value2, int key3, char value3) with
(int key1, char value1, int key2, char value2, int key3, char value3, int key4, char value4) withAll
(IntCharMap map) withInitialCapacity
(int capacity) Same asMutableIntCharMapFactory.empty()
.
-
Field Details
-
INSTANCE
-
-
Constructor Details
-
MutableIntCharMapFactoryImpl
public MutableIntCharMapFactoryImpl()
-
-
Method Details
-
empty
- Specified by:
empty
in interfaceMutableIntCharMapFactory
-
of
Description copied from interface:MutableIntCharMapFactory
Same asMutableIntCharMapFactory.empty()
.- Specified by:
of
in interfaceMutableIntCharMapFactory
-
with
Description copied from interface:MutableIntCharMapFactory
Same asMutableIntCharMapFactory.empty()
.- Specified by:
with
in interfaceMutableIntCharMapFactory
-
with
- Specified by:
with
in interfaceMutableIntCharMapFactory
-
of
- Specified by:
of
in interfaceMutableIntCharMapFactory
-
of
- Specified by:
of
in interfaceMutableIntCharMapFactory
-
with
- Specified by:
with
in interfaceMutableIntCharMapFactory
-
of
- Specified by:
of
in interfaceMutableIntCharMapFactory
-
with
- Specified by:
with
in interfaceMutableIntCharMapFactory
-
of
public MutableIntCharMap of(int key1, char value1, int key2, char value2, int key3, char value3, int key4, char value4) - Specified by:
of
in interfaceMutableIntCharMapFactory
-
with
public MutableIntCharMap with(int key1, char value1, int key2, char value2, int key3, char value3, int key4, char value4) - Specified by:
with
in interfaceMutableIntCharMapFactory
-
ofInitialCapacity
Description copied from interface:MutableIntCharMapFactory
Same asMutableIntCharMapFactory.empty()
. but takes in an initial capacity- Specified by:
ofInitialCapacity
in interfaceMutableIntCharMapFactory
-
withInitialCapacity
Description copied from interface:MutableIntCharMapFactory
Same asMutableIntCharMapFactory.empty()
. but takes in an initial capacity- Specified by:
withInitialCapacity
in interfaceMutableIntCharMapFactory
-
ofAll
Description copied from interface:MutableIntCharMapFactory
- Specified by:
ofAll
in interfaceMutableIntCharMapFactory
-
withAll
- Specified by:
withAll
in interfaceMutableIntCharMapFactory
-
from
public <T> MutableIntCharMap from(Iterable<T> iterable, IntFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) Description copied from interface:MutableIntCharMapFactory
Creates anMutableIntCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Specified by:
from
in interfaceMutableIntCharMapFactory
-