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 MutableCharBooleanMap
empty()
<T> MutableCharBooleanMap
from(Iterable<T> iterable, CharFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
Creates anMutableCharBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableCharBooleanMap
of()
Same asempty()
.MutableCharBooleanMap
ofAll(CharBooleanMap map)
Same aswithAll(CharBooleanMap)
.MutableCharBooleanMap
ofInitialCapacity(int capacity)
Same asempty()
.MutableCharBooleanMap
with()
Same asempty()
.MutableCharBooleanMap
withAll(CharBooleanMap map)
MutableCharBooleanMap
withInitialCapacity(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 anMutableCharBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-