Interface ImmutableLongCharMapFactory
public interface ImmutableLongCharMapFactory
A factory which creates instances of type
ImmutableLongCharMap.
This file was automatically generated from template file immutablePrimitivePrimitiveMapFactory.stg.- Since:
- 4.0.
-
Method Summary
Modifier and TypeMethodDescriptionempty()from(Iterable<T> iterable, LongFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) Creates anImmutableLongCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.of()Same asempty().of(long key, char value) Same aswith(long, char).ofAll(LongCharMap map) Same aswithAll(LongCharMap).with()Same asempty().with(long key, char value) withAll(LongCharMap map)
-
Method Details
-
empty
ImmutableLongCharMap empty()- Since:
- 6.0
-
of
ImmutableLongCharMap of()Same asempty(). -
with
ImmutableLongCharMap with()Same asempty(). -
of
Same aswith(long, char). -
with
-
ofAll
Same aswithAll(LongCharMap). -
withAll
-
from
<T> ImmutableLongCharMap from(Iterable<T> iterable, LongFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) Creates anImmutableLongCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-