Interface MutableIntBooleanMapFactory
-
- All Known Implementing Classes:
MutableIntBooleanMapFactoryImpl
public interface MutableIntBooleanMapFactory
A 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 MutableIntBooleanMap
empty()
<T> MutableIntBooleanMap
from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
Creates anMutableIntBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableIntBooleanMap
of()
Same asempty()
.default MutableIntBooleanMap
of(int key, boolean value)
default MutableIntBooleanMap
of(int key1, boolean value1, int key2, boolean value2)
default MutableIntBooleanMap
of(int key1, boolean value1, int key2, boolean value2, int key3, boolean value3)
default MutableIntBooleanMap
of(int key1, boolean value1, int key2, boolean value2, int key3, boolean value3, int key4, boolean value4)
MutableIntBooleanMap
ofAll(IntBooleanMap map)
Same aswithAll(IntBooleanMap)
.MutableIntBooleanMap
ofInitialCapacity(int capacity)
Same asempty()
.MutableIntBooleanMap
with()
Same asempty()
.default MutableIntBooleanMap
with(int key, boolean value)
default MutableIntBooleanMap
with(int key1, boolean value1, int key2, boolean value2)
default MutableIntBooleanMap
with(int key1, boolean value1, int key2, boolean value2, int key3, boolean value3)
default MutableIntBooleanMap
with(int key1, boolean value1, int key2, boolean value2, int key3, boolean value3, int key4, boolean value4)
MutableIntBooleanMap
withAll(IntBooleanMap map)
MutableIntBooleanMap
withInitialCapacity(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(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
Creates anMutableIntBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-
-