Interface ImmutableIntByteMapFactory
public interface ImmutableIntByteMapFactory
A factory which creates instances of type
ImmutableIntByteMap.
This file was automatically generated from template file immutablePrimitivePrimitiveMapFactory.stg.- Since:
- 4.0.
-
Method Summary
Modifier and TypeMethodDescriptionempty()from(Iterable<T> iterable, IntFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction) Creates anImmutableIntByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.of()Same asempty().of(int key, byte value) Same aswith(int, byte).ofAll(IntByteMap map) Same aswithAll(IntByteMap).with()Same asempty().with(int key, byte value) withAll(IntByteMap map)
-
Method Details
-
empty
ImmutableIntByteMap empty()- Since:
- 6.0
-
of
ImmutableIntByteMap of()Same asempty(). -
with
ImmutableIntByteMap with()Same asempty(). -
of
Same aswith(int, byte). -
with
-
ofAll
Same aswithAll(IntByteMap). -
withAll
-
from
<T> ImmutableIntByteMap from(Iterable<T> iterable, IntFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction) Creates anImmutableIntByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-