Interface ImmutableIntByteMapFactory
-
public interface ImmutableIntByteMapFactoryA factory which creates instances of typeImmutableIntByteMap. This file was automatically generated from template file immutablePrimitivePrimitiveMapFactory.stg.- Since:
- 4.0.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ImmutableIntByteMapempty()<T> ImmutableIntByteMapfrom(Iterable<T> iterable, IntFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)Creates anImmutableIntByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableIntByteMapof()Same asempty().ImmutableIntByteMapof(int key, byte value)Same aswith(int, byte).ImmutableIntByteMapofAll(IntByteMap map)Same aswithAll(IntByteMap).ImmutableIntByteMapwith()Same asempty().ImmutableIntByteMapwith(int key, byte value)ImmutableIntByteMapwithAll(IntByteMap map)
-
-
-
Method Detail
-
empty
ImmutableIntByteMap empty()
- Since:
- 6.0
-
of
ImmutableIntByteMap of()
Same asempty().
-
with
ImmutableIntByteMap with()
Same asempty().
-
of
ImmutableIntByteMap of(int key, byte value)
Same aswith(int, byte).
-
with
ImmutableIntByteMap with(int key, byte value)
-
ofAll
ImmutableIntByteMap ofAll(IntByteMap map)
Same aswithAll(IntByteMap).
-
withAll
ImmutableIntByteMap withAll(IntByteMap map)
-
from
<T> ImmutableIntByteMap from(Iterable<T> iterable, IntFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
Creates anImmutableIntByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-
-