Interface ImmutableIntLongMapFactory
-
public interface ImmutableIntLongMapFactoryA factory which creates instances of typeImmutableIntLongMap. 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 ImmutableIntLongMapempty()<T> ImmutableIntLongMapfrom(Iterable<T> iterable, IntFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)Creates anImmutableIntLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableIntLongMapof()Same asempty().ImmutableIntLongMapof(int key, long value)Same aswith(int, long).ImmutableIntLongMapofAll(IntLongMap map)Same aswithAll(IntLongMap).ImmutableIntLongMapwith()Same asempty().ImmutableIntLongMapwith(int key, long value)ImmutableIntLongMapwithAll(IntLongMap map)
-
-
-
Method Detail
-
empty
ImmutableIntLongMap empty()
- Since:
- 6.0
-
of
ImmutableIntLongMap of()
Same asempty().
-
with
ImmutableIntLongMap with()
Same asempty().
-
of
ImmutableIntLongMap of(int key, long value)
Same aswith(int, long).
-
with
ImmutableIntLongMap with(int key, long value)
-
ofAll
ImmutableIntLongMap ofAll(IntLongMap map)
Same aswithAll(IntLongMap).
-
withAll
ImmutableIntLongMap withAll(IntLongMap map)
-
from
<T> ImmutableIntLongMap from(Iterable<T> iterable, IntFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)
Creates anImmutableIntLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-
-