Interface MutableIntByteMapFactory
-
public interface MutableIntByteMapFactoryA 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 MutableIntByteMapempty()<T> MutableIntByteMapfrom(Iterable<T> iterable, IntFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)Creates anMutableIntByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableIntByteMapof()Same asempty().default MutableIntByteMapof(int key, byte value)default MutableIntByteMapof(int key1, byte value1, int key2, byte value2)default MutableIntByteMapof(int key1, byte value1, int key2, byte value2, int key3, byte value3)default MutableIntByteMapof(int key1, byte value1, int key2, byte value2, int key3, byte value3, int key4, byte value4)MutableIntByteMapofAll(IntByteMap map)Same aswithAll(IntByteMap).MutableIntByteMapofInitialCapacity(int capacity)Same asempty().MutableIntByteMapwith()Same asempty().default MutableIntByteMapwith(int key, byte value)default MutableIntByteMapwith(int key1, byte value1, int key2, byte value2)default MutableIntByteMapwith(int key1, byte value1, int key2, byte value2, int key3, byte value3)default MutableIntByteMapwith(int key1, byte value1, int key2, byte value2, int key3, byte value3, int key4, byte value4)MutableIntByteMapwithAll(IntByteMap map)MutableIntByteMapwithInitialCapacity(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(Iterable<T> iterable, IntFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
Creates anMutableIntByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-
-