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