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