Interface ImmutableByteCharMapFactory
public interface ImmutableByteCharMapFactory
A factory which creates instances of type
ImmutableByteCharMap.
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, CharFunction<? super T> valueFunction) Creates anImmutableByteCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.of()Same asempty().of(byte key, char value) Same aswith(byte, char).ofAll(ByteCharMap map) Same aswithAll(ByteCharMap).with()Same asempty().with(byte key, char value) withAll(ByteCharMap map)
-
Method Details
-
empty
ImmutableByteCharMap empty()- Since:
- 6.0
-
of
ImmutableByteCharMap of()Same asempty(). -
with
ImmutableByteCharMap with()Same asempty(). -
of
Same aswith(byte, char). -
with
-
ofAll
Same aswithAll(ByteCharMap). -
withAll
-
from
<T> ImmutableByteCharMap from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) Creates anImmutableByteCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-