Class MutableIntBooleanMapFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.map.mutable.primitive.MutableIntBooleanMapFactoryImpl
-
- All Implemented Interfaces:
MutableIntBooleanMapFactory
public class MutableIntBooleanMapFactoryImpl extends Object implements MutableIntBooleanMapFactory
MutableIntBooleanMapFactoryImpl is a factory implementation which creates instances of typeMutableIntBooleanMap. This file was automatically generated from template file mutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 6.0.
-
-
Field Summary
Fields Modifier and Type Field Description static MutableIntBooleanMapFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description MutableIntBooleanMapFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableIntBooleanMapempty()<T> MutableIntBooleanMapfrom(Iterable<T> iterable, IntFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)MutableIntBooleanMapof()MutableIntBooleanMapof(int key, boolean value)MutableIntBooleanMapof(int key1, boolean value1, int key2, boolean value2)MutableIntBooleanMapof(int key1, boolean value1, int key2, boolean value2, int key3, boolean value3)MutableIntBooleanMapof(int key1, boolean value1, int key2, boolean value2, int key3, boolean value3, int key4, boolean value4)MutableIntBooleanMapofAll(IntBooleanMap map)MutableIntBooleanMapofInitialCapacity(int capacity)MutableIntBooleanMapwith()MutableIntBooleanMapwith(int key, boolean value)MutableIntBooleanMapwith(int key1, boolean value1, int key2, boolean value2)MutableIntBooleanMapwith(int key1, boolean value1, int key2, boolean value2, int key3, boolean value3)MutableIntBooleanMapwith(int key1, boolean value1, int key2, boolean value2, int key3, boolean value3, int key4, boolean value4)MutableIntBooleanMapwithAll(IntBooleanMap map)MutableIntBooleanMapwithInitialCapacity(int capacity)
-
-
-
Field Detail
-
INSTANCE
public static final MutableIntBooleanMapFactory INSTANCE
-
-
Method Detail
-
empty
public MutableIntBooleanMap empty()
- Specified by:
emptyin interfaceMutableIntBooleanMapFactory
-
of
public MutableIntBooleanMap of()
- Specified by:
ofin interfaceMutableIntBooleanMapFactory
-
with
public MutableIntBooleanMap with()
- Specified by:
within interfaceMutableIntBooleanMapFactory
-
with
public MutableIntBooleanMap with(int key, boolean value)
- Specified by:
within interfaceMutableIntBooleanMapFactory
-
of
public MutableIntBooleanMap of(int key, boolean value)
- Specified by:
ofin interfaceMutableIntBooleanMapFactory
-
of
public MutableIntBooleanMap of(int key1, boolean value1, int key2, boolean value2)
- Specified by:
ofin interfaceMutableIntBooleanMapFactory
-
with
public MutableIntBooleanMap with(int key1, boolean value1, int key2, boolean value2)
- Specified by:
within interfaceMutableIntBooleanMapFactory
-
of
public MutableIntBooleanMap of(int key1, boolean value1, int key2, boolean value2, int key3, boolean value3)
- Specified by:
ofin interfaceMutableIntBooleanMapFactory
-
with
public MutableIntBooleanMap with(int key1, boolean value1, int key2, boolean value2, int key3, boolean value3)
- Specified by:
within interfaceMutableIntBooleanMapFactory
-
of
public MutableIntBooleanMap of(int key1, boolean value1, int key2, boolean value2, int key3, boolean value3, int key4, boolean value4)
- Specified by:
ofin interfaceMutableIntBooleanMapFactory
-
with
public MutableIntBooleanMap with(int key1, boolean value1, int key2, boolean value2, int key3, boolean value3, int key4, boolean value4)
- Specified by:
within interfaceMutableIntBooleanMapFactory
-
ofInitialCapacity
public MutableIntBooleanMap ofInitialCapacity(int capacity)
- Specified by:
ofInitialCapacityin interfaceMutableIntBooleanMapFactory
-
withInitialCapacity
public MutableIntBooleanMap withInitialCapacity(int capacity)
- Specified by:
withInitialCapacityin interfaceMutableIntBooleanMapFactory
-
ofAll
public MutableIntBooleanMap ofAll(IntBooleanMap map)
- Specified by:
ofAllin interfaceMutableIntBooleanMapFactory
-
withAll
public MutableIntBooleanMap withAll(IntBooleanMap map)
- Specified by:
withAllin interfaceMutableIntBooleanMapFactory
-
from
public <T> MutableIntBooleanMap from(Iterable<T> iterable, IntFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
- Specified by:
fromin interfaceMutableIntBooleanMapFactory
-
-