Interface MutableIntByteMapFactory
-
- All Known Implementing Classes:
MutableIntByteMapFactoryImpl
public interface MutableIntByteMapFactory
A factory which creates instances of typeMutableIntByteMap
. This file was automatically generated from template file mutablePrimitivePrimitiveMapFactory.stg.- Since:
- 6.0.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description MutableIntByteMap
empty()
<T> MutableIntByteMap
from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
Creates anMutableIntByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableIntByteMap
of()
Same asempty()
.default MutableIntByteMap
of(int key, byte value)
default MutableIntByteMap
of(int key1, byte value1, int key2, byte value2)
default MutableIntByteMap
of(int key1, byte value1, int key2, byte value2, int key3, byte value3)
default MutableIntByteMap
of(int key1, byte value1, int key2, byte value2, int key3, byte value3, int key4, byte value4)
MutableIntByteMap
ofAll(IntByteMap map)
Same aswithAll(IntByteMap)
.MutableIntByteMap
ofInitialCapacity(int capacity)
Same asempty()
.MutableIntByteMap
with()
Same asempty()
.default MutableIntByteMap
with(int key, byte value)
default MutableIntByteMap
with(int key1, byte value1, int key2, byte value2)
default MutableIntByteMap
with(int key1, byte value1, int key2, byte value2, int key3, byte value3)
default MutableIntByteMap
with(int key1, byte value1, int key2, byte value2, int key3, byte value3, int key4, byte value4)
MutableIntByteMap
withAll(IntByteMap map)
MutableIntByteMap
withInitialCapacity(int capacity)
Same asempty()
.
-
-
-
Method Detail
-
empty
MutableIntByteMap empty()
-
of
MutableIntByteMap of()
Same asempty()
.
-
with
MutableIntByteMap with()
Same asempty()
.
-
of
default MutableIntByteMap of(int key, byte value)
- Since:
- 11.1.
-
with
default MutableIntByteMap with(int key, byte value)
- Since:
- 11.1.
-
of
default MutableIntByteMap of(int key1, byte value1, int key2, byte value2)
- Since:
- 11.1.
-
with
default MutableIntByteMap with(int key1, byte value1, int key2, byte value2)
- Since:
- 11.1.
-
of
default MutableIntByteMap of(int key1, byte value1, int key2, byte value2, int key3, byte value3)
- Since:
- 11.1.
-
with
default MutableIntByteMap with(int key1, byte value1, int key2, byte value2, int key3, byte value3)
- Since:
- 11.1.
-
of
default MutableIntByteMap of(int key1, byte value1, int key2, byte value2, int key3, byte value3, int key4, byte value4)
- Since:
- 11.1.
-
with
default MutableIntByteMap with(int key1, byte value1, int key2, byte value2, int key3, byte value3, int key4, byte value4)
- Since:
- 11.1.
-
ofInitialCapacity
MutableIntByteMap ofInitialCapacity(int capacity)
Same asempty()
. but takes in an initial capacity
-
withInitialCapacity
MutableIntByteMap withInitialCapacity(int capacity)
Same asempty()
. but takes in an initial capacity
-
ofAll
MutableIntByteMap ofAll(IntByteMap map)
Same aswithAll(IntByteMap)
.
-
withAll
MutableIntByteMap withAll(IntByteMap map)
-
from
<T> MutableIntByteMap from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
Creates anMutableIntByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-
-