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 TypeMethodDescriptionempty()
from
(Iterable<T> iterable, ShortFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction) Creates anMutableShortBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.of()
Same asempty()
.default MutableShortBooleanMap
of
(short key, boolean value) default MutableShortBooleanMap
of
(short key1, boolean value1, short key2, boolean value2) default MutableShortBooleanMap
of
(short key1, boolean value1, short key2, boolean value2, short key3, boolean value3) default MutableShortBooleanMap
of
(short key1, boolean value1, short key2, boolean value2, short key3, boolean value3, short key4, boolean value4) ofAll
(ShortBooleanMap map) Same aswithAll(ShortBooleanMap)
.ofInitialCapacity
(int capacity) Same asempty()
.with()
Same asempty()
.default MutableShortBooleanMap
with
(short key, boolean value) default MutableShortBooleanMap
with
(short key1, boolean value1, short key2, boolean value2) default MutableShortBooleanMap
with
(short key1, boolean value1, short key2, boolean value2, short key3, boolean value3) default MutableShortBooleanMap
with
(short key1, boolean value1, short key2, boolean value2, short key3, boolean value3, short key4, boolean value4) withAll
(ShortBooleanMap map) withInitialCapacity
(int capacity) Same asempty()
.
-
Method Details
-
empty
MutableShortBooleanMap empty() -
of
Same asempty()
. -
with
MutableShortBooleanMap with()Same asempty()
. -
of
- Since:
- 11.1.
-
with
- Since:
- 11.1.
-
of
- Since:
- 11.1.
-
with
- Since:
- 11.1.
-
of
default MutableShortBooleanMap of(short key1, boolean value1, short key2, boolean value2, short key3, boolean value3) - Since:
- 11.1.
-
with
default MutableShortBooleanMap with(short key1, boolean value1, short key2, boolean value2, short key3, boolean value3) - Since:
- 11.1.
-
of
default MutableShortBooleanMap of(short key1, boolean value1, short key2, boolean value2, short key3, boolean value3, short key4, boolean value4) - Since:
- 11.1.
-
with
default MutableShortBooleanMap with(short key1, boolean value1, short key2, boolean value2, short key3, boolean value3, short key4, boolean value4) - Since:
- 11.1.
-
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
-