Interface MutableLongBooleanMapFactory
-
- All Known Implementing Classes:
MutableLongBooleanMapFactoryImpl
public interface MutableLongBooleanMapFactory
A factory which creates instances of typeMutableLongBooleanMap
. 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 MutableLongBooleanMap
empty()
<T> MutableLongBooleanMap
from(java.lang.Iterable<T> iterable, LongFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
Creates anMutableLongBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableLongBooleanMap
of()
Same asempty()
.default MutableLongBooleanMap
of(long key, boolean value)
default MutableLongBooleanMap
of(long key1, boolean value1, long key2, boolean value2)
default MutableLongBooleanMap
of(long key1, boolean value1, long key2, boolean value2, long key3, boolean value3)
default MutableLongBooleanMap
of(long key1, boolean value1, long key2, boolean value2, long key3, boolean value3, long key4, boolean value4)
MutableLongBooleanMap
ofAll(LongBooleanMap map)
Same aswithAll(LongBooleanMap)
.MutableLongBooleanMap
ofInitialCapacity(int capacity)
Same asempty()
.MutableLongBooleanMap
with()
Same asempty()
.default MutableLongBooleanMap
with(long key, boolean value)
default MutableLongBooleanMap
with(long key1, boolean value1, long key2, boolean value2)
default MutableLongBooleanMap
with(long key1, boolean value1, long key2, boolean value2, long key3, boolean value3)
default MutableLongBooleanMap
with(long key1, boolean value1, long key2, boolean value2, long key3, boolean value3, long key4, boolean value4)
MutableLongBooleanMap
withAll(LongBooleanMap map)
MutableLongBooleanMap
withInitialCapacity(int capacity)
Same asempty()
.
-
-
-
Method Detail
-
empty
MutableLongBooleanMap empty()
-
of
MutableLongBooleanMap of()
Same asempty()
.
-
with
MutableLongBooleanMap with()
Same asempty()
.
-
of
default MutableLongBooleanMap of(long key, boolean value)
- Since:
- 11.1.
-
with
default MutableLongBooleanMap with(long key, boolean value)
- Since:
- 11.1.
-
of
default MutableLongBooleanMap of(long key1, boolean value1, long key2, boolean value2)
- Since:
- 11.1.
-
with
default MutableLongBooleanMap with(long key1, boolean value1, long key2, boolean value2)
- Since:
- 11.1.
-
of
default MutableLongBooleanMap of(long key1, boolean value1, long key2, boolean value2, long key3, boolean value3)
- Since:
- 11.1.
-
with
default MutableLongBooleanMap with(long key1, boolean value1, long key2, boolean value2, long key3, boolean value3)
- Since:
- 11.1.
-
of
default MutableLongBooleanMap of(long key1, boolean value1, long key2, boolean value2, long key3, boolean value3, long key4, boolean value4)
- Since:
- 11.1.
-
with
default MutableLongBooleanMap with(long key1, boolean value1, long key2, boolean value2, long key3, boolean value3, long key4, boolean value4)
- Since:
- 11.1.
-
ofInitialCapacity
MutableLongBooleanMap ofInitialCapacity(int capacity)
Same asempty()
. but takes in an initial capacity
-
withInitialCapacity
MutableLongBooleanMap withInitialCapacity(int capacity)
Same asempty()
. but takes in an initial capacity
-
ofAll
MutableLongBooleanMap ofAll(LongBooleanMap map)
Same aswithAll(LongBooleanMap)
.
-
withAll
MutableLongBooleanMap withAll(LongBooleanMap map)
-
from
<T> MutableLongBooleanMap from(java.lang.Iterable<T> iterable, LongFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
Creates anMutableLongBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-
-