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 MutableShortCharMapempty()<T> MutableShortCharMapfrom(Iterable<T> iterable, ShortFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)Creates anMutableShortCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableShortCharMapof()Same asempty().MutableShortCharMapofAll(ShortCharMap map)Same aswithAll(ShortCharMap).MutableShortCharMapofInitialCapacity(int capacity)Same asempty().MutableShortCharMapwith()Same asempty().MutableShortCharMapwithAll(ShortCharMap map)MutableShortCharMapwithInitialCapacity(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 anMutableShortCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-