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 MutableIntShortMap
empty()
<T> MutableIntShortMap
from(Iterable<T> iterable, IntFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
Creates anMutableIntShortMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableIntShortMap
of()
Same asempty()
.MutableIntShortMap
ofAll(IntShortMap map)
Same aswithAll(IntShortMap)
.MutableIntShortMap
ofInitialCapacity(int capacity)
Same asempty()
.MutableIntShortMap
with()
Same asempty()
.MutableIntShortMap
withAll(IntShortMap map)
MutableIntShortMap
withInitialCapacity(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 anMutableIntShortMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-