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 MutableCharShortMapempty()<T> MutableCharShortMapfrom(Iterable<T> iterable, CharFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)Creates anMutableCharShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableCharShortMapof()Same asempty().MutableCharShortMapofAll(CharShortMap map)Same aswithAll(CharShortMap).MutableCharShortMapofInitialCapacity(int capacity)Same asempty().MutableCharShortMapwith()Same asempty().MutableCharShortMapwithAll(CharShortMap map)MutableCharShortMapwithInitialCapacity(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 anMutableCharShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-