Interface ImmutableLongIntMapFactory
-
public interface ImmutableLongIntMapFactoryA factory which creates instances of typeImmutableLongIntMap. 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 ImmutableLongIntMapempty()<T> ImmutableLongIntMapfrom(Iterable<T> iterable, LongFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)Creates anImmutableLongIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableLongIntMapof()Same asempty().ImmutableLongIntMapof(long key, int value)Same aswith(long, int).ImmutableLongIntMapofAll(LongIntMap map)Same aswithAll(LongIntMap).ImmutableLongIntMapwith()Same asempty().ImmutableLongIntMapwith(long key, int value)ImmutableLongIntMapwithAll(LongIntMap map)
-
-
-
Method Detail
-
empty
ImmutableLongIntMap empty()
- Since:
- 6.0
-
of
ImmutableLongIntMap of()
Same asempty().
-
with
ImmutableLongIntMap with()
Same asempty().
-
of
ImmutableLongIntMap of(long key, int value)
Same aswith(long, int).
-
with
ImmutableLongIntMap with(long key, int value)
-
ofAll
ImmutableLongIntMap ofAll(LongIntMap map)
Same aswithAll(LongIntMap).
-
withAll
ImmutableLongIntMap withAll(LongIntMap map)
-
from
<T> ImmutableLongIntMap from(Iterable<T> iterable, LongFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
Creates anImmutableLongIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-
-