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