Class MutableBooleanListFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.list.mutable.primitive.MutableBooleanListFactoryImpl
-
- All Implemented Interfaces:
MutableBooleanListFactory
public class MutableBooleanListFactoryImpl extends Object implements MutableBooleanListFactory
MutableBooleanListFactoryImpl is a factory implementation which creates instances of typeMutableBooleanList. This file was automatically generated from template file mutablePrimitiveListFactoryImpl.stg.- Since:
- 6.0.
-
-
Field Summary
Fields Modifier and Type Field Description static MutableBooleanListFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description MutableBooleanListFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableBooleanListempty()MutableBooleanListof()MutableBooleanListof(boolean... items)MutableBooleanListofAll(Iterable<Boolean> iterable)MutableBooleanListofAll(BooleanIterable items)MutableBooleanListwith()MutableBooleanListwith(boolean... items)Creates a new list using the passeditemsargument as the backing store.MutableBooleanListwithAll(Iterable<Boolean> iterable)MutableBooleanListwithAll(BooleanIterable items)MutableBooleanListwithInitialCapacity(int capacity)-
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.eclipse.collections.api.factory.list.primitive.MutableBooleanListFactory
wrapCopy
-
-
-
-
Field Detail
-
INSTANCE
public static final MutableBooleanListFactory INSTANCE
-
-
Method Detail
-
empty
public MutableBooleanList empty()
- Specified by:
emptyin interfaceMutableBooleanListFactory
-
of
public MutableBooleanList of()
- Specified by:
ofin interfaceMutableBooleanListFactory
-
with
public MutableBooleanList with()
- Specified by:
within interfaceMutableBooleanListFactory
-
withInitialCapacity
public MutableBooleanList withInitialCapacity(int capacity)
- Specified by:
withInitialCapacityin interfaceMutableBooleanListFactory
-
of
public MutableBooleanList of(boolean... items)
- Specified by:
ofin interfaceMutableBooleanListFactory
-
with
public MutableBooleanList with(boolean... items)
Creates a new list using the passeditemsargument as the backing store.!!! WARNING: This method uses the passed in array, so can be very unsafe if the original array is held onto anywhere else. !!!
- Specified by:
within interfaceMutableBooleanListFactory
-
ofAll
public MutableBooleanList ofAll(BooleanIterable items)
- Specified by:
ofAllin interfaceMutableBooleanListFactory
-
withAll
public MutableBooleanList withAll(BooleanIterable items)
- Specified by:
withAllin interfaceMutableBooleanListFactory
-
ofAll
public MutableBooleanList ofAll(Iterable<Boolean> iterable)
- Specified by:
ofAllin interfaceMutableBooleanListFactory- Since:
- 10.0
-
withAll
public MutableBooleanList withAll(Iterable<Boolean> iterable)
- Specified by:
withAllin interfaceMutableBooleanListFactory- Since:
- 10.0
-
-