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