public interface MutableIntByteMapFactory
MutableIntByteMap.
This file was automatically generated from template file mutablePrimitivePrimitiveMapFactory.stg.| Modifier and Type | Method and Description |
|---|---|
MutableIntByteMap |
empty() |
<T> MutableIntByteMap |
from(Iterable<T> iterable,
IntFunction<? super T> keyFunction,
ByteFunction<? super T> valueFunction)
Creates an
MutableIntByteMap from an Iterable<T> by applying keyFunction and valueFunction. |
MutableIntByteMap |
of()
Same as
empty(). |
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 as
withAll(IntByteMap). |
MutableIntByteMap |
ofInitialCapacity(int capacity)
Same as
empty(). |
MutableIntByteMap |
with()
Same as
empty(). |
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 as
empty(). |
MutableIntByteMap empty()
MutableIntByteMap of()
empty().MutableIntByteMap with()
empty().default MutableIntByteMap of(int key, byte value)
default MutableIntByteMap with(int key, byte value)
default MutableIntByteMap of(int key1, byte value1, int key2, byte value2)
default MutableIntByteMap with(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 with(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)
default MutableIntByteMap with(int key1, byte value1, int key2, byte value2, int key3, byte value3, int key4, byte value4)
MutableIntByteMap ofInitialCapacity(int capacity)
empty(). but takes in an initial capacityMutableIntByteMap withInitialCapacity(int capacity)
empty(). but takes in an initial capacityMutableIntByteMap ofAll(IntByteMap map)
withAll(IntByteMap).MutableIntByteMap withAll(IntByteMap map)
<T> MutableIntByteMap from(Iterable<T> iterable, IntFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
MutableIntByteMap from an Iterable<T> by applying keyFunction and valueFunction.Copyright © 2004–2023. All rights reserved.