Interface MutableShortBooleanMapFactory
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 anMutableShortBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.of()Same asempty().default MutableShortBooleanMapof(short key, boolean value) default MutableShortBooleanMapof(short key1, boolean value1, short key2, boolean value2) default MutableShortBooleanMapof(short key1, boolean value1, short key2, boolean value2, short key3, boolean value3) default MutableShortBooleanMapof(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(). but takes in an initial capacitywith()Same asempty().default MutableShortBooleanMapwith(short key, boolean value) default MutableShortBooleanMapwith(short key1, boolean value1, short key2, boolean value2) default MutableShortBooleanMapwith(short key1, boolean value1, short key2, boolean value2, short key3, boolean value3) default MutableShortBooleanMapwith(short key1, boolean value1, short key2, boolean value2, short key3, boolean value3, short key4, boolean value4) withAll(ShortBooleanMap map) withInitialCapacity(int capacity) Same asempty(). but takes in an initial capacity
-
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 anMutableShortBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-