Interface MutableByteBooleanMapFactory
public interface MutableByteBooleanMapFactory
A factory which creates instances of type
MutableByteBooleanMap.
This file was automatically generated from template file mutablePrimitivePrimitiveMapFactory.stg.- Since:
- 6.0.
-
Method Summary
Modifier and TypeMethodDescriptionempty()from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction) Creates anMutableByteBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.of()Same asempty().default MutableByteBooleanMapof(byte key, boolean value) default MutableByteBooleanMapof(byte key1, boolean value1, byte key2, boolean value2) default MutableByteBooleanMapof(byte key1, boolean value1, byte key2, boolean value2, byte key3, boolean value3) default MutableByteBooleanMapof(byte key1, boolean value1, byte key2, boolean value2, byte key3, boolean value3, byte key4, boolean value4) ofAll(ByteBooleanMap map) Same aswithAll(ByteBooleanMap).ofInitialCapacity(int capacity) Same asempty(). but takes in an initial capacitywith()Same asempty().default MutableByteBooleanMapwith(byte key, boolean value) default MutableByteBooleanMapwith(byte key1, boolean value1, byte key2, boolean value2) default MutableByteBooleanMapwith(byte key1, boolean value1, byte key2, boolean value2, byte key3, boolean value3) default MutableByteBooleanMapwith(byte key1, boolean value1, byte key2, boolean value2, byte key3, boolean value3, byte key4, boolean value4) withAll(ByteBooleanMap map) withInitialCapacity(int capacity) Same asempty(). but takes in an initial capacity
-
Method Details
-
empty
MutableByteBooleanMap empty() -
of
Same asempty(). -
with
MutableByteBooleanMap with()Same asempty(). -
of
- Since:
- 11.1.
-
with
- Since:
- 11.1.
-
of
- Since:
- 11.1.
-
with
- Since:
- 11.1.
-
of
default MutableByteBooleanMap of(byte key1, boolean value1, byte key2, boolean value2, byte key3, boolean value3) - Since:
- 11.1.
-
with
default MutableByteBooleanMap with(byte key1, boolean value1, byte key2, boolean value2, byte key3, boolean value3) - Since:
- 11.1.
-
of
default MutableByteBooleanMap of(byte key1, boolean value1, byte key2, boolean value2, byte key3, boolean value3, byte key4, boolean value4) - Since:
- 11.1.
-
with
default MutableByteBooleanMap with(byte key1, boolean value1, byte key2, boolean value2, byte key3, boolean value3, byte 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(ByteBooleanMap). -
withAll
-
from
<T> MutableByteBooleanMap from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction) Creates anMutableByteBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-