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