Interface ImmutableLongCharMapFactory
-
public interface ImmutableLongCharMapFactoryA factory which creates instances of typeImmutableLongCharMap. This file was automatically generated from template file immutablePrimitivePrimitiveMapFactory.stg.- Since:
- 4.0.
-
-
Method Summary
All Methods Instance Methods Abstract Methods 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 Detail
-
empty
ImmutableLongCharMap empty()
- Since:
- 6.0
-
of
ImmutableLongCharMap of()
Same asempty().
-
with
ImmutableLongCharMap with()
Same asempty().
-
of
ImmutableLongCharMap of(long key, char value)
Same aswith(long, char).
-
with
ImmutableLongCharMap with(long key, char value)
-
ofAll
ImmutableLongCharMap ofAll(LongCharMap map)
Same aswithAll(LongCharMap).
-
withAll
ImmutableLongCharMap withAll(LongCharMap map)
-
from
<T> ImmutableLongCharMap from(Iterable<T> iterable, LongFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
Creates anImmutableLongCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-
-