Interface ImmutableCharByteMapFactory
- All Known Implementing Classes:
ImmutableCharByteMapFactoryImpl
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 Type Method Description ImmutableCharByteMapempty()<T> ImmutableCharByteMapfrom(Iterable<T> iterable, CharFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)Creates anImmutableCharByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableCharByteMapof()Same asempty().ImmutableCharByteMapof(char key, byte value)Same aswith(char, byte).ImmutableCharByteMapofAll(CharByteMap map)Same aswithAll(CharByteMap).ImmutableCharByteMapwith()Same asempty().ImmutableCharByteMapwith(char key, byte value)ImmutableCharByteMapwithAll(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
-