Interface ImmutableIntIntMapFactory
- All Known Implementing Classes:
ImmutableIntIntMapFactoryImpl
public interface ImmutableIntIntMapFactory
A factory which creates instances of type
ImmutableIntIntMap.
This file was automatically generated from template file immutablePrimitivePrimitiveMapFactory.stg.- Since:
- 4.0.
-
Method Summary
Modifier and Type Method Description ImmutableIntIntMapempty()<T> ImmutableIntIntMapfrom(Iterable<T> iterable, IntFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)Creates anImmutableIntIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableIntIntMapof()Same asempty().ImmutableIntIntMapof(int key, int value)Same aswith(int, int).ImmutableIntIntMapofAll(IntIntMap map)Same aswithAll(IntIntMap).ImmutableIntIntMapwith()Same asempty().ImmutableIntIntMapwith(int key, int value)ImmutableIntIntMapwithAll(IntIntMap map)
-
Method Details
-
empty
ImmutableIntIntMap empty()- Since:
- 6.0
-
of
ImmutableIntIntMap of()Same asempty(). -
with
ImmutableIntIntMap with()Same asempty(). -
of
Same aswith(int, int). -
with
-
ofAll
Same aswithAll(IntIntMap). -
withAll
-
from
<T> ImmutableIntIntMap from(Iterable<T> iterable, IntFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)Creates anImmutableIntIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-