Interface MutableCharBooleanMapFactory
- All Known Implementing Classes:
MutableCharBooleanMapFactoryImpl
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 Type Method Description MutableCharBooleanMapempty()<T> MutableCharBooleanMapfrom(Iterable<T> iterable, CharFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anMutableCharBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableCharBooleanMapof()Same asempty().MutableCharBooleanMapofAll(CharBooleanMap map)Same aswithAll(CharBooleanMap).MutableCharBooleanMapofInitialCapacity(int capacity)Same asempty().MutableCharBooleanMapwith()Same asempty().MutableCharBooleanMapwithAll(CharBooleanMap map)MutableCharBooleanMapwithInitialCapacity(int capacity)Same asempty().
-
Method Details
-
empty
MutableCharBooleanMap empty() -
of
Same asempty(). -
with
MutableCharBooleanMap with()Same asempty(). -
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
-