Interface MutableIntCharMapFactory
-
public interface MutableIntCharMapFactoryA 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 MutableIntCharMapempty()<T> MutableIntCharMapfrom(Iterable<T> iterable, IntFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)Creates anMutableIntCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableIntCharMapof()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)MutableIntCharMapofAll(IntCharMap map)Same aswithAll(IntCharMap).MutableIntCharMapofInitialCapacity(int capacity)Same asempty().MutableIntCharMapwith()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)MutableIntCharMapwithAll(IntCharMap map)MutableIntCharMapwithInitialCapacity(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(Iterable<T> iterable, IntFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
Creates anMutableIntCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-
-