Interface ImmutableIntIntMapFactory
-
public interface ImmutableIntIntMapFactoryA factory which creates instances of typeImmutableIntIntMap. 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 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 Detail
-
empty
ImmutableIntIntMap empty()
- Since:
- 6.0
-
of
ImmutableIntIntMap of()
Same asempty().
-
with
ImmutableIntIntMap with()
Same asempty().
-
of
ImmutableIntIntMap of(int key, int value)
Same aswith(int, int).
-
with
ImmutableIntIntMap with(int key, int value)
-
ofAll
ImmutableIntIntMap ofAll(IntIntMap map)
Same aswithAll(IntIntMap).
-
withAll
ImmutableIntIntMap withAll(IntIntMap map)
-
from
<T> ImmutableIntIntMap from(Iterable<T> iterable, IntFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
Creates anImmutableIntIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-
-