Interface MutableIntBooleanMapFactory
-
public interface MutableIntBooleanMapFactoryA factory which creates instances of typeMutableIntBooleanMap. This file was automatically generated from template file mutablePrimitivePrimitiveMapFactory.stg.- Since:
- 6.0.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description MutableIntBooleanMapempty()<T> MutableIntBooleanMapfrom(Iterable<T> iterable, IntFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anMutableIntBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableIntBooleanMapof()Same asempty().default MutableIntBooleanMapof(int key, boolean value)default MutableIntBooleanMapof(int key1, boolean value1, int key2, boolean value2)default MutableIntBooleanMapof(int key1, boolean value1, int key2, boolean value2, int key3, boolean value3)default MutableIntBooleanMapof(int key1, boolean value1, int key2, boolean value2, int key3, boolean value3, int key4, boolean value4)MutableIntBooleanMapofAll(IntBooleanMap map)Same aswithAll(IntBooleanMap).MutableIntBooleanMapofInitialCapacity(int capacity)Same asempty().MutableIntBooleanMapwith()Same asempty().default MutableIntBooleanMapwith(int key, boolean value)default MutableIntBooleanMapwith(int key1, boolean value1, int key2, boolean value2)default MutableIntBooleanMapwith(int key1, boolean value1, int key2, boolean value2, int key3, boolean value3)default MutableIntBooleanMapwith(int key1, boolean value1, int key2, boolean value2, int key3, boolean value3, int key4, boolean value4)MutableIntBooleanMapwithAll(IntBooleanMap map)MutableIntBooleanMapwithInitialCapacity(int capacity)Same asempty().
-
-
-
Method Detail
-
empty
MutableIntBooleanMap empty()
-
of
MutableIntBooleanMap of()
Same asempty().
-
with
MutableIntBooleanMap with()
Same asempty().
-
of
default MutableIntBooleanMap of(int key, boolean value)
- Since:
- 11.1.
-
with
default MutableIntBooleanMap with(int key, boolean value)
- Since:
- 11.1.
-
of
default MutableIntBooleanMap of(int key1, boolean value1, int key2, boolean value2)
- Since:
- 11.1.
-
with
default MutableIntBooleanMap with(int key1, boolean value1, int key2, boolean value2)
- Since:
- 11.1.
-
of
default MutableIntBooleanMap of(int key1, boolean value1, int key2, boolean value2, int key3, boolean value3)
- Since:
- 11.1.
-
with
default MutableIntBooleanMap with(int key1, boolean value1, int key2, boolean value2, int key3, boolean value3)
- Since:
- 11.1.
-
of
default MutableIntBooleanMap of(int key1, boolean value1, int key2, boolean value2, int key3, boolean value3, int key4, boolean value4)
- Since:
- 11.1.
-
with
default MutableIntBooleanMap with(int key1, boolean value1, int key2, boolean value2, int key3, boolean value3, int key4, boolean value4)
- Since:
- 11.1.
-
ofInitialCapacity
MutableIntBooleanMap ofInitialCapacity(int capacity)
Same asempty(). but takes in an initial capacity
-
withInitialCapacity
MutableIntBooleanMap withInitialCapacity(int capacity)
Same asempty(). but takes in an initial capacity
-
ofAll
MutableIntBooleanMap ofAll(IntBooleanMap map)
Same aswithAll(IntBooleanMap).
-
withAll
MutableIntBooleanMap withAll(IntBooleanMap map)
-
from
<T> MutableIntBooleanMap from(Iterable<T> iterable, IntFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
Creates anMutableIntBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-
-