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