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 ImmutableCharByteMap
empty()
<T> ImmutableCharByteMap
from(Iterable<T> iterable, CharFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
Creates anImmutableCharByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableCharByteMap
of()
Same asempty()
.ImmutableCharByteMap
of(char key, byte value)
Same aswith(char, byte)
.ImmutableCharByteMap
ofAll(CharByteMap map)
Same aswithAll(CharByteMap)
.ImmutableCharByteMap
with()
Same asempty()
.ImmutableCharByteMap
with(char key, byte value)
ImmutableCharByteMap
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 anImmutableCharByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-