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