Class MutableLongBooleanMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.mutable.primitive.MutableLongBooleanMapFactoryImpl
-
- All Implemented Interfaces:
MutableLongBooleanMapFactory
public class MutableLongBooleanMapFactoryImpl extends java.lang.Object implements MutableLongBooleanMapFactory
MutableLongBooleanMapFactoryImpl is a factory implementation which creates instances of typeMutableLongBooleanMap. This file was automatically generated from template file mutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 6.0.
-
-
Field Summary
Fields Modifier and Type Field Description static MutableLongBooleanMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description MutableLongBooleanMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableLongBooleanMapempty()<T> MutableLongBooleanMapfrom(java.lang.Iterable<T> iterable, LongFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anMutableLongBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableLongBooleanMapof()Same asMutableLongBooleanMapFactory.empty().MutableLongBooleanMapof(long key, boolean value)MutableLongBooleanMapof(long key1, boolean value1, long key2, boolean value2)MutableLongBooleanMapof(long key1, boolean value1, long key2, boolean value2, long key3, boolean value3)MutableLongBooleanMapof(long key1, boolean value1, long key2, boolean value2, long key3, boolean value3, long key4, boolean value4)MutableLongBooleanMapofAll(LongBooleanMap map)MutableLongBooleanMapofInitialCapacity(int capacity)Same asMutableLongBooleanMapFactory.empty().MutableLongBooleanMapwith()Same asMutableLongBooleanMapFactory.empty().MutableLongBooleanMapwith(long key, boolean value)MutableLongBooleanMapwith(long key1, boolean value1, long key2, boolean value2)MutableLongBooleanMapwith(long key1, boolean value1, long key2, boolean value2, long key3, boolean value3)MutableLongBooleanMapwith(long key1, boolean value1, long key2, boolean value2, long key3, boolean value3, long key4, boolean value4)MutableLongBooleanMapwithAll(LongBooleanMap map)MutableLongBooleanMapwithInitialCapacity(int capacity)Same asMutableLongBooleanMapFactory.empty().
-
-
-
Field Detail
-
INSTANCE
public static final MutableLongBooleanMapFactory INSTANCE
-
-
Method Detail
-
empty
public MutableLongBooleanMap empty()
- Specified by:
emptyin interfaceMutableLongBooleanMapFactory
-
of
public MutableLongBooleanMap of()
Description copied from interface:MutableLongBooleanMapFactorySame asMutableLongBooleanMapFactory.empty().- Specified by:
ofin interfaceMutableLongBooleanMapFactory
-
with
public MutableLongBooleanMap with()
Description copied from interface:MutableLongBooleanMapFactorySame asMutableLongBooleanMapFactory.empty().- Specified by:
within interfaceMutableLongBooleanMapFactory
-
with
public MutableLongBooleanMap with(long key, boolean value)
- Specified by:
within interfaceMutableLongBooleanMapFactory
-
of
public MutableLongBooleanMap of(long key, boolean value)
- Specified by:
ofin interfaceMutableLongBooleanMapFactory
-
of
public MutableLongBooleanMap of(long key1, boolean value1, long key2, boolean value2)
- Specified by:
ofin interfaceMutableLongBooleanMapFactory
-
with
public MutableLongBooleanMap with(long key1, boolean value1, long key2, boolean value2)
- Specified by:
within interfaceMutableLongBooleanMapFactory
-
of
public MutableLongBooleanMap of(long key1, boolean value1, long key2, boolean value2, long key3, boolean value3)
- Specified by:
ofin interfaceMutableLongBooleanMapFactory
-
with
public MutableLongBooleanMap with(long key1, boolean value1, long key2, boolean value2, long key3, boolean value3)
- Specified by:
within interfaceMutableLongBooleanMapFactory
-
of
public MutableLongBooleanMap of(long key1, boolean value1, long key2, boolean value2, long key3, boolean value3, long key4, boolean value4)
- Specified by:
ofin interfaceMutableLongBooleanMapFactory
-
with
public MutableLongBooleanMap with(long key1, boolean value1, long key2, boolean value2, long key3, boolean value3, long key4, boolean value4)
- Specified by:
within interfaceMutableLongBooleanMapFactory
-
ofInitialCapacity
public MutableLongBooleanMap ofInitialCapacity(int capacity)
Description copied from interface:MutableLongBooleanMapFactorySame asMutableLongBooleanMapFactory.empty(). but takes in an initial capacity- Specified by:
ofInitialCapacityin interfaceMutableLongBooleanMapFactory
-
withInitialCapacity
public MutableLongBooleanMap withInitialCapacity(int capacity)
Description copied from interface:MutableLongBooleanMapFactorySame asMutableLongBooleanMapFactory.empty(). but takes in an initial capacity- Specified by:
withInitialCapacityin interfaceMutableLongBooleanMapFactory
-
ofAll
public MutableLongBooleanMap ofAll(LongBooleanMap map)
Description copied from interface:MutableLongBooleanMapFactory- Specified by:
ofAllin interfaceMutableLongBooleanMapFactory
-
withAll
public MutableLongBooleanMap withAll(LongBooleanMap map)
- Specified by:
withAllin interfaceMutableLongBooleanMapFactory
-
from
public <T> MutableLongBooleanMap from(java.lang.Iterable<T> iterable, LongFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
Description copied from interface:MutableLongBooleanMapFactoryCreates anMutableLongBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Specified by:
fromin interfaceMutableLongBooleanMapFactory
-
-