Interface MutableLongBooleanMapFactory
-
public interface MutableLongBooleanMapFactoryA 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 MutableLongBooleanMapempty()<T> MutableLongBooleanMapfrom(Iterable<T> iterable, LongFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anMutableLongBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableLongBooleanMapof()Same asempty().default MutableLongBooleanMapof(long key, boolean value)default MutableLongBooleanMapof(long key1, boolean value1, long key2, boolean value2)default MutableLongBooleanMapof(long key1, boolean value1, long key2, boolean value2, long key3, boolean value3)default MutableLongBooleanMapof(long key1, boolean value1, long key2, boolean value2, long key3, boolean value3, long key4, boolean value4)MutableLongBooleanMapofAll(LongBooleanMap map)Same aswithAll(LongBooleanMap).MutableLongBooleanMapofInitialCapacity(int capacity)Same asempty().MutableLongBooleanMapwith()Same asempty().default MutableLongBooleanMapwith(long key, boolean value)default MutableLongBooleanMapwith(long key1, boolean value1, long key2, boolean value2)default MutableLongBooleanMapwith(long key1, boolean value1, long key2, boolean value2, long key3, boolean value3)default MutableLongBooleanMapwith(long key1, boolean value1, long key2, boolean value2, long key3, boolean value3, long key4, boolean value4)MutableLongBooleanMapwithAll(LongBooleanMap map)MutableLongBooleanMapwithInitialCapacity(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(Iterable<T> iterable, LongFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
Creates anMutableLongBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-
-