Class MutableBooleanBagFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.bag.mutable.primitive.MutableBooleanBagFactoryImpl
-
- All Implemented Interfaces:
MutableBooleanBagFactory
public class MutableBooleanBagFactoryImpl extends Object implements MutableBooleanBagFactory
MutableBooleanBagFactoryImpl is a factory implementation which creates instances of typeMutableBooleanBag. This file was automatically generated from template file mutablePrimitiveBagFactoryImpl.stg.- Since:
- 6.0.
-
-
Field Summary
Fields Modifier and Type Field Description static MutableBooleanBagFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description MutableBooleanBagFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableBooleanBagempty()MutableBooleanBagof()MutableBooleanBagof(boolean... items)MutableBooleanBagofAll(Iterable<Boolean> iterable)MutableBooleanBagofAll(BooleanIterable items)MutableBooleanBagwith()MutableBooleanBagwith(boolean... items)MutableBooleanBagwithAll(Iterable<Boolean> iterable)MutableBooleanBagwithAll(BooleanIterable items)
-
-
-
Field Detail
-
INSTANCE
public static final MutableBooleanBagFactory INSTANCE
-
-
Method Detail
-
empty
public MutableBooleanBag empty()
- Specified by:
emptyin interfaceMutableBooleanBagFactory
-
of
public MutableBooleanBag of()
- Specified by:
ofin interfaceMutableBooleanBagFactory
-
with
public MutableBooleanBag with()
- Specified by:
within interfaceMutableBooleanBagFactory
-
of
public MutableBooleanBag of(boolean... items)
- Specified by:
ofin interfaceMutableBooleanBagFactory
-
with
public MutableBooleanBag with(boolean... items)
- Specified by:
within interfaceMutableBooleanBagFactory
-
ofAll
public MutableBooleanBag ofAll(BooleanIterable items)
- Specified by:
ofAllin interfaceMutableBooleanBagFactory
-
withAll
public MutableBooleanBag withAll(BooleanIterable items)
- Specified by:
withAllin interfaceMutableBooleanBagFactory
-
ofAll
public MutableBooleanBag ofAll(Iterable<Boolean> iterable)
- Specified by:
ofAllin interfaceMutableBooleanBagFactory- Since:
- 10.0
-
withAll
public MutableBooleanBag withAll(Iterable<Boolean> iterable)
- Specified by:
withAllin interfaceMutableBooleanBagFactory- Since:
- 10.0
-
-