Interface ImmutableByteCharMapFactory
- All Known Implementing Classes:
ImmutableByteCharMapFactoryImpl
public interface ImmutableByteCharMapFactory
A factory which creates instances of type
ImmutableByteCharMap
.
This file was automatically generated from template file immutablePrimitivePrimitiveMapFactory.stg.- Since:
- 4.0.
-
Method Summary
Modifier and Type Method Description ImmutableByteCharMap
empty()
<T> ImmutableByteCharMap
from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
Creates anImmutableByteCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableByteCharMap
of()
Same asempty()
.ImmutableByteCharMap
of(byte key, char value)
Same aswith(byte, char)
.ImmutableByteCharMap
ofAll(ByteCharMap map)
Same aswithAll(ByteCharMap)
.ImmutableByteCharMap
with()
Same asempty()
.ImmutableByteCharMap
with(byte key, char value)
ImmutableByteCharMap
withAll(ByteCharMap map)
-
Method Details
-
empty
ImmutableByteCharMap empty()- Since:
- 6.0
-
of
ImmutableByteCharMap of()Same asempty()
. -
with
ImmutableByteCharMap with()Same asempty()
. -
of
Same aswith(byte, char)
. -
with
-
ofAll
Same aswithAll(ByteCharMap)
. -
withAll
-
from
<T> ImmutableByteCharMap from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)Creates anImmutableByteCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-