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