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