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