Interface MutableIntCharMapFactory
-
- All Known Implementing Classes:
MutableIntCharMapFactoryImpl
public interface MutableIntCharMapFactory
A factory which creates instances of typeMutableIntCharMap
. This file was automatically generated from template file mutablePrimitivePrimitiveMapFactory.stg.- Since:
- 6.0.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description MutableIntCharMap
empty()
<T> MutableIntCharMap
from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
Creates anMutableIntCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableIntCharMap
of()
Same asempty()
.default MutableIntCharMap
of(int key, char value)
default MutableIntCharMap
of(int key1, char value1, int key2, char value2)
default MutableIntCharMap
of(int key1, char value1, int key2, char value2, int key3, char value3)
default MutableIntCharMap
of(int key1, char value1, int key2, char value2, int key3, char value3, int key4, char value4)
MutableIntCharMap
ofAll(IntCharMap map)
Same aswithAll(IntCharMap)
.MutableIntCharMap
ofInitialCapacity(int capacity)
Same asempty()
.MutableIntCharMap
with()
Same asempty()
.default MutableIntCharMap
with(int key, char value)
default MutableIntCharMap
with(int key1, char value1, int key2, char value2)
default MutableIntCharMap
with(int key1, char value1, int key2, char value2, int key3, char value3)
default MutableIntCharMap
with(int key1, char value1, int key2, char value2, int key3, char value3, int key4, char value4)
MutableIntCharMap
withAll(IntCharMap map)
MutableIntCharMap
withInitialCapacity(int capacity)
Same asempty()
.
-
-
-
Method Detail
-
empty
MutableIntCharMap empty()
-
of
MutableIntCharMap of()
Same asempty()
.
-
with
MutableIntCharMap with()
Same asempty()
.
-
of
default MutableIntCharMap of(int key, char value)
- Since:
- 11.1.
-
with
default MutableIntCharMap with(int key, char value)
- Since:
- 11.1.
-
of
default MutableIntCharMap of(int key1, char value1, int key2, char value2)
- Since:
- 11.1.
-
with
default MutableIntCharMap with(int key1, char value1, int key2, char value2)
- Since:
- 11.1.
-
of
default MutableIntCharMap of(int key1, char value1, int key2, char value2, int key3, char value3)
- Since:
- 11.1.
-
with
default MutableIntCharMap with(int key1, char value1, int key2, char value2, int key3, char value3)
- Since:
- 11.1.
-
of
default MutableIntCharMap of(int key1, char value1, int key2, char value2, int key3, char value3, int key4, char value4)
- Since:
- 11.1.
-
with
default MutableIntCharMap with(int key1, char value1, int key2, char value2, int key3, char value3, int key4, char value4)
- Since:
- 11.1.
-
ofInitialCapacity
MutableIntCharMap ofInitialCapacity(int capacity)
Same asempty()
. but takes in an initial capacity
-
withInitialCapacity
MutableIntCharMap withInitialCapacity(int capacity)
Same asempty()
. but takes in an initial capacity
-
ofAll
MutableIntCharMap ofAll(IntCharMap map)
Same aswithAll(IntCharMap)
.
-
withAll
MutableIntCharMap withAll(IntCharMap map)
-
from
<T> MutableIntCharMap from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
Creates anMutableIntCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-
-