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 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 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
-