Interface MutableCharCharMapFactory
- All Known Implementing Classes:
MutableCharCharMapFactoryImpl
public interface MutableCharCharMapFactory
A factory which creates instances of type
MutableCharCharMap
.
This file was automatically generated from template file mutablePrimitivePrimitiveMapFactory.stg.- Since:
- 6.0.
-
Method Summary
Modifier and Type Method Description MutableCharCharMap
empty()
<T> MutableCharCharMap
from(Iterable<T> iterable, CharFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
Creates anMutableCharCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableCharCharMap
of()
Same asempty()
.MutableCharCharMap
ofAll(CharCharMap map)
Same aswithAll(CharCharMap)
.MutableCharCharMap
ofInitialCapacity(int capacity)
Same asempty()
.MutableCharCharMap
with()
Same asempty()
.MutableCharCharMap
withAll(CharCharMap map)
MutableCharCharMap
withInitialCapacity(int capacity)
Same asempty()
.
-
Method Details
-
empty
MutableCharCharMap empty() -
of
MutableCharCharMap of()Same asempty()
. -
with
MutableCharCharMap with()Same asempty()
. -
ofInitialCapacity
Same asempty()
. but takes in an initial capacity -
withInitialCapacity
Same asempty()
. but takes in an initial capacity -
ofAll
Same aswithAll(CharCharMap)
. -
withAll
-
from
<T> MutableCharCharMap from(Iterable<T> iterable, CharFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)Creates anMutableCharCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-