Interface MutableByteIntMapFactory
public interface MutableByteIntMapFactory
A factory which creates instances of type
MutableByteIntMap.
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, IntFunction<? super T> valueFunction) Creates anMutableByteIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.of()Same asempty().default MutableByteIntMapof(byte key, int value) default MutableByteIntMapof(byte key1, int value1, byte key2, int value2) default MutableByteIntMapof(byte key1, int value1, byte key2, int value2, byte key3, int value3) default MutableByteIntMapof(byte key1, int value1, byte key2, int value2, byte key3, int value3, byte key4, int value4) ofAll(ByteIntMap map) Same aswithAll(ByteIntMap).ofInitialCapacity(int capacity) Same asempty(). but takes in an initial capacitywith()Same asempty().default MutableByteIntMapwith(byte key, int value) default MutableByteIntMapwith(byte key1, int value1, byte key2, int value2) default MutableByteIntMapwith(byte key1, int value1, byte key2, int value2, byte key3, int value3) default MutableByteIntMapwith(byte key1, int value1, byte key2, int value2, byte key3, int value3, byte key4, int value4) withAll(ByteIntMap map) withInitialCapacity(int capacity) Same asempty(). but takes in an initial capacity
-
Method Details
-
empty
MutableByteIntMap empty() -
of
MutableByteIntMap of()Same asempty(). -
with
MutableByteIntMap with()Same asempty(). -
of
- Since:
- 11.1.
-
with
- Since:
- 11.1.
-
of
- Since:
- 11.1.
-
with
- Since:
- 11.1.
-
of
- Since:
- 11.1.
-
with
- Since:
- 11.1.
-
of
default MutableByteIntMap of(byte key1, int value1, byte key2, int value2, byte key3, int value3, byte key4, int value4) - Since:
- 11.1.
-
with
default MutableByteIntMap with(byte key1, int value1, byte key2, int value2, byte key3, int value3, byte key4, int 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(ByteIntMap). -
withAll
-
from
<T> MutableByteIntMap from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, IntFunction<? super T> valueFunction) Creates anMutableByteIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-