Class MutableBooleanBagFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.bag.mutable.primitive.MutableBooleanBagFactoryImpl
-
- All Implemented Interfaces:
MutableBooleanBagFactory
public class MutableBooleanBagFactoryImpl extends java.lang.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 MutableBooleanBagFactory
INSTANCE
-
Constructor Summary
Constructors Constructor Description MutableBooleanBagFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableBooleanBag
empty()
MutableBooleanBag
of()
Same asMutableBooleanBagFactory.empty()
.MutableBooleanBag
of(boolean... items)
MutableBooleanBag
ofAll(java.lang.Iterable<java.lang.Boolean> iterable)
MutableBooleanBag
ofAll(BooleanIterable items)
MutableBooleanBag
with()
Same asMutableBooleanBagFactory.empty()
.MutableBooleanBag
with(boolean... items)
MutableBooleanBag
withAll(java.lang.Iterable<java.lang.Boolean> iterable)
MutableBooleanBag
withAll(BooleanIterable items)
-
-
-
Field Detail
-
INSTANCE
public static final MutableBooleanBagFactory INSTANCE
-
-
Method Detail
-
empty
public MutableBooleanBag empty()
- Specified by:
empty
in interfaceMutableBooleanBagFactory
-
of
public MutableBooleanBag of()
Description copied from interface:MutableBooleanBagFactory
Same asMutableBooleanBagFactory.empty()
.- Specified by:
of
in interfaceMutableBooleanBagFactory
-
with
public MutableBooleanBag with()
Description copied from interface:MutableBooleanBagFactory
Same asMutableBooleanBagFactory.empty()
.- Specified by:
with
in interfaceMutableBooleanBagFactory
-
of
public MutableBooleanBag of(boolean... items)
Description copied from interface:MutableBooleanBagFactory
- Specified by:
of
in interfaceMutableBooleanBagFactory
-
with
public MutableBooleanBag with(boolean... items)
- Specified by:
with
in interfaceMutableBooleanBagFactory
-
ofAll
public MutableBooleanBag ofAll(BooleanIterable items)
Description copied from interface:MutableBooleanBagFactory
- Specified by:
ofAll
in interfaceMutableBooleanBagFactory
-
withAll
public MutableBooleanBag withAll(BooleanIterable items)
- Specified by:
withAll
in interfaceMutableBooleanBagFactory
-
ofAll
public MutableBooleanBag ofAll(java.lang.Iterable<java.lang.Boolean> iterable)
Description copied from interface:MutableBooleanBagFactory
- Specified by:
ofAll
in interfaceMutableBooleanBagFactory
- Since:
- 10.0
-
withAll
public MutableBooleanBag withAll(java.lang.Iterable<java.lang.Boolean> iterable)
- Specified by:
withAll
in interfaceMutableBooleanBagFactory
- Since:
- 10.0
-
-