Interface MutableIntCharMapFactory
public interface MutableIntCharMapFactory
A factory which creates instances of type
MutableIntCharMap.
This file was automatically generated from template file mutablePrimitivePrimitiveMapFactory.stg.- Since:
- 6.0.
-
Method Summary
Modifier and TypeMethodDescriptionempty()from(Iterable<T> iterable, IntFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) Creates anMutableIntCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.of()Same asempty().default MutableIntCharMapof(int key, char value) default MutableIntCharMapof(int key1, char value1, int key2, char value2) default MutableIntCharMapof(int key1, char value1, int key2, char value2, int key3, char value3) default MutableIntCharMapof(int key1, char value1, int key2, char value2, int key3, char value3, int key4, char value4) ofAll(IntCharMap map) Same aswithAll(IntCharMap).ofInitialCapacity(int capacity) Same asempty(). but takes in an initial capacitywith()Same asempty().default MutableIntCharMapwith(int key, char value) default MutableIntCharMapwith(int key1, char value1, int key2, char value2) default MutableIntCharMapwith(int key1, char value1, int key2, char value2, int key3, char value3) default MutableIntCharMapwith(int key1, char value1, int key2, char value2, int key3, char value3, int key4, char value4) withAll(IntCharMap map) withInitialCapacity(int capacity) Same asempty(). but takes in an initial capacity
-
Method Details
-
empty
MutableIntCharMap empty() -
of
MutableIntCharMap of()Same asempty(). -
with
MutableIntCharMap with()Same asempty(). -
of
- Since:
- 11.1.
-
with
- Since:
- 11.1.
-
of
- Since:
- 11.1.
-
with
- Since:
- 11.1.
-
of
- Since:
- 11.1.
-
with
- 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
Same asempty(). but takes in an initial capacity -
withInitialCapacity
Same asempty(). but takes in an initial capacity -
ofAll
Same aswithAll(IntCharMap). -
withAll
-
from
<T> MutableIntCharMap from(Iterable<T> iterable, IntFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) Creates anMutableIntCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-