Interface ImmutableCharByteMapFactory
-
public interface ImmutableCharByteMapFactoryA factory which creates instances of typeImmutableCharByteMap. This file was automatically generated from template file immutablePrimitivePrimitiveMapFactory.stg.- Since:
- 4.0.
-
-
Method Summary
All Methods Instance Methods Abstract Methods 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 Detail
-
empty
ImmutableCharByteMap empty()
- Since:
- 6.0
-
of
ImmutableCharByteMap of()
Same asempty().
-
with
ImmutableCharByteMap with()
Same asempty().
-
of
ImmutableCharByteMap of(char key, byte value)
Same aswith(char, byte).
-
with
ImmutableCharByteMap with(char key, byte value)
-
ofAll
ImmutableCharByteMap ofAll(CharByteMap map)
Same aswithAll(CharByteMap).
-
withAll
ImmutableCharByteMap withAll(CharByteMap map)
-
from
<T> ImmutableCharByteMap from(Iterable<T> iterable, CharFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
Creates anImmutableCharByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-
-