Interface MutableFloatShortMapFactory
- All Known Implementing Classes:
MutableFloatShortMapFactoryImpl
public interface MutableFloatShortMapFactory
A factory which creates instances of type
MutableFloatShortMap.
This file was automatically generated from template file mutablePrimitivePrimitiveMapFactory.stg.- Since:
- 6.0.
-
Method Summary
Modifier and Type Method Description MutableFloatShortMapempty()<T> MutableFloatShortMapfrom(Iterable<T> iterable, FloatFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)Creates anMutableFloatShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableFloatShortMapof()Same asempty().MutableFloatShortMapofAll(FloatShortMap map)Same aswithAll(FloatShortMap).MutableFloatShortMapofInitialCapacity(int capacity)Same asempty().MutableFloatShortMapwith()Same asempty().MutableFloatShortMapwithAll(FloatShortMap map)MutableFloatShortMapwithInitialCapacity(int capacity)Same asempty().
-
Method Details
-
empty
MutableFloatShortMap empty() -
of
MutableFloatShortMap of()Same asempty(). -
with
MutableFloatShortMap with()Same asempty(). -
ofInitialCapacity
Same asempty(). but takes in an initial capacity -
withInitialCapacity
Same asempty(). but takes in an initial capacity -
ofAll
Same aswithAll(FloatShortMap). -
withAll
-
from
<T> MutableFloatShortMap from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)Creates anMutableFloatShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-