Interface ImmutableByteByteMapFactory
-
public interface ImmutableByteByteMapFactoryA factory which creates instances of typeImmutableByteByteMap. 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 ImmutableByteByteMapempty()<T> ImmutableByteByteMapfrom(Iterable<T> iterable, ByteFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)Creates anImmutableByteByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableByteByteMapof()Same asempty().ImmutableByteByteMapof(byte key, byte value)Same aswith(byte, byte).ImmutableByteByteMapofAll(ByteByteMap map)Same aswithAll(ByteByteMap).ImmutableByteByteMapwith()Same asempty().ImmutableByteByteMapwith(byte key, byte value)ImmutableByteByteMapwithAll(ByteByteMap map)
-
-
-
Method Detail
-
empty
ImmutableByteByteMap empty()
- Since:
- 6.0
-
of
ImmutableByteByteMap of()
Same asempty().
-
with
ImmutableByteByteMap with()
Same asempty().
-
of
ImmutableByteByteMap of(byte key, byte value)
Same aswith(byte, byte).
-
with
ImmutableByteByteMap with(byte key, byte value)
-
ofAll
ImmutableByteByteMap ofAll(ByteByteMap map)
Same aswithAll(ByteByteMap).
-
withAll
ImmutableByteByteMap withAll(ByteByteMap map)
-
from
<T> ImmutableByteByteMap from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
Creates anImmutableByteByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-
-