Interface ImmutableLongCharMapFactory
- All Known Implementing Classes:
ImmutableLongCharMapFactoryImpl
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 Type Method Description ImmutableLongCharMapempty()<T> ImmutableLongCharMapfrom(Iterable<T> iterable, LongFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)Creates anImmutableLongCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableLongCharMapof()Same asempty().ImmutableLongCharMapof(long key, char value)Same aswith(long, char).ImmutableLongCharMapofAll(LongCharMap map)Same aswithAll(LongCharMap).ImmutableLongCharMapwith()Same asempty().ImmutableLongCharMapwith(long key, char value)ImmutableLongCharMapwithAll(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
-