Interface MutableShortByteMapFactory
- All Known Implementing Classes:
MutableShortByteMapFactoryImpl
public interface MutableShortByteMapFactory
A factory which creates instances of type
MutableShortByteMap.
This file was automatically generated from template file mutablePrimitivePrimitiveMapFactory.stg.- Since:
- 6.0.
-
Method Summary
Modifier and Type Method Description MutableShortByteMapempty()<T> MutableShortByteMapfrom(Iterable<T> iterable, ShortFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)Creates anMutableShortByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableShortByteMapof()Same asempty().MutableShortByteMapofAll(ShortByteMap map)Same aswithAll(ShortByteMap).MutableShortByteMapofInitialCapacity(int capacity)Same asempty().MutableShortByteMapwith()Same asempty().MutableShortByteMapwithAll(ShortByteMap map)MutableShortByteMapwithInitialCapacity(int capacity)Same asempty().
-
Method Details
-
empty
MutableShortByteMap empty() -
of
MutableShortByteMap of()Same asempty(). -
with
MutableShortByteMap with()Same asempty(). -
ofInitialCapacity
Same asempty(). but takes in an initial capacity -
withInitialCapacity
Same asempty(). but takes in an initial capacity -
ofAll
Same aswithAll(ShortByteMap). -
withAll
-
from
<T> MutableShortByteMap from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)Creates anMutableShortByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-