Interface MutableShortLongMapFactory
- All Known Implementing Classes:
MutableShortLongMapFactoryImpl
public interface MutableShortLongMapFactory
A factory which creates instances of type
MutableShortLongMap
.
This file was automatically generated from template file mutablePrimitivePrimitiveMapFactory.stg.- Since:
- 6.0.
-
Method Summary
Modifier and Type Method Description MutableShortLongMap
empty()
<T> MutableShortLongMap
from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)
Creates anMutableShortLongMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableShortLongMap
of()
Same asempty()
.MutableShortLongMap
ofAll(ShortLongMap map)
Same aswithAll(ShortLongMap)
.MutableShortLongMap
ofInitialCapacity(int capacity)
Same asempty()
.MutableShortLongMap
with()
Same asempty()
.MutableShortLongMap
withAll(ShortLongMap map)
MutableShortLongMap
withInitialCapacity(int capacity)
Same asempty()
.
-
Method Details
-
empty
MutableShortLongMap empty() -
of
MutableShortLongMap of()Same asempty()
. -
with
MutableShortLongMap with()Same asempty()
. -
ofInitialCapacity
Same asempty()
. but takes in an initial capacity -
withInitialCapacity
Same asempty()
. but takes in an initial capacity -
ofAll
Same aswithAll(ShortLongMap)
. -
withAll
-
from
<T> MutableShortLongMap from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)Creates anMutableShortLongMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-