Interface ImmutableCharLongMapFactory
-
public interface ImmutableCharLongMapFactoryA factory which creates instances of typeImmutableCharLongMap. 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 ImmutableCharLongMapempty()<T> ImmutableCharLongMapfrom(Iterable<T> iterable, CharFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)Creates anImmutableCharLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableCharLongMapof()Same asempty().ImmutableCharLongMapof(char key, long value)Same aswith(char, long).ImmutableCharLongMapofAll(CharLongMap map)Same aswithAll(CharLongMap).ImmutableCharLongMapwith()Same asempty().ImmutableCharLongMapwith(char key, long value)ImmutableCharLongMapwithAll(CharLongMap map)
-
-
-
Method Detail
-
empty
ImmutableCharLongMap empty()
- Since:
- 6.0
-
of
ImmutableCharLongMap of()
Same asempty().
-
with
ImmutableCharLongMap with()
Same asempty().
-
of
ImmutableCharLongMap of(char key, long value)
Same aswith(char, long).
-
with
ImmutableCharLongMap with(char key, long value)
-
ofAll
ImmutableCharLongMap ofAll(CharLongMap map)
Same aswithAll(CharLongMap).
-
withAll
ImmutableCharLongMap withAll(CharLongMap map)
-
from
<T> ImmutableCharLongMap from(Iterable<T> iterable, CharFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)
Creates anImmutableCharLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-
-