Interface MutableIntShortMapFactory
- All Known Implementing Classes:
MutableIntShortMapFactoryImpl
public interface MutableIntShortMapFactory
A factory which creates instances of type
MutableIntShortMap.
This file was automatically generated from template file mutablePrimitivePrimitiveMapFactory.stg.- Since:
- 6.0.
-
Method Summary
Modifier and Type Method Description MutableIntShortMapempty()<T> MutableIntShortMapfrom(Iterable<T> iterable, IntFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)Creates anMutableIntShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableIntShortMapof()Same asempty().MutableIntShortMapofAll(IntShortMap map)Same aswithAll(IntShortMap).MutableIntShortMapofInitialCapacity(int capacity)Same asempty().MutableIntShortMapwith()Same asempty().MutableIntShortMapwithAll(IntShortMap map)MutableIntShortMapwithInitialCapacity(int capacity)Same asempty().
-
Method Details
-
empty
MutableIntShortMap empty() -
of
MutableIntShortMap of()Same asempty(). -
with
MutableIntShortMap with()Same asempty(). -
ofInitialCapacity
Same asempty(). but takes in an initial capacity -
withInitialCapacity
Same asempty(). but takes in an initial capacity -
ofAll
Same aswithAll(IntShortMap). -
withAll
-
from
<T> MutableIntShortMap from(Iterable<T> iterable, IntFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)Creates anMutableIntShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-