Class MutableBooleanSetFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.set.mutable.primitive.MutableBooleanSetFactoryImpl
-
- All Implemented Interfaces:
MutableBooleanSetFactory
public class MutableBooleanSetFactoryImpl extends java.lang.Object implements MutableBooleanSetFactory
MutableBooleanSetFactoryImpl is a factory implementation which creates instances of typeMutableBooleanSet
. This file was automatically generated from template file mutablePrimitiveSetFactoryImpl.stg.- Since:
- 6.0.
-
-
Field Summary
Fields Modifier and Type Field Description static MutableBooleanSetFactory
INSTANCE
-
Constructor Summary
Constructors Constructor Description MutableBooleanSetFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableBooleanSet
empty()
MutableBooleanSet
of()
Same asMutableBooleanSetFactory.empty()
.MutableBooleanSet
of(boolean... items)
MutableBooleanSet
ofAll(java.lang.Iterable<java.lang.Boolean> iterable)
MutableBooleanSet
ofAll(BooleanIterable items)
MutableBooleanSet
with()
Same asMutableBooleanSetFactory.empty()
.MutableBooleanSet
with(boolean... items)
MutableBooleanSet
withAll(java.lang.Iterable<java.lang.Boolean> iterable)
MutableBooleanSet
withAll(BooleanIterable items)
-
-
-
Field Detail
-
INSTANCE
public static final MutableBooleanSetFactory INSTANCE
-
-
Method Detail
-
empty
public MutableBooleanSet empty()
- Specified by:
empty
in interfaceMutableBooleanSetFactory
-
of
public MutableBooleanSet of()
Description copied from interface:MutableBooleanSetFactory
Same asMutableBooleanSetFactory.empty()
.- Specified by:
of
in interfaceMutableBooleanSetFactory
-
with
public MutableBooleanSet with()
Description copied from interface:MutableBooleanSetFactory
Same asMutableBooleanSetFactory.empty()
.- Specified by:
with
in interfaceMutableBooleanSetFactory
-
of
public MutableBooleanSet of(boolean... items)
Description copied from interface:MutableBooleanSetFactory
- Specified by:
of
in interfaceMutableBooleanSetFactory
-
with
public MutableBooleanSet with(boolean... items)
- Specified by:
with
in interfaceMutableBooleanSetFactory
-
ofAll
public MutableBooleanSet ofAll(BooleanIterable items)
Description copied from interface:MutableBooleanSetFactory
- Specified by:
ofAll
in interfaceMutableBooleanSetFactory
-
withAll
public MutableBooleanSet withAll(BooleanIterable items)
- Specified by:
withAll
in interfaceMutableBooleanSetFactory
-
ofAll
public MutableBooleanSet ofAll(java.lang.Iterable<java.lang.Boolean> iterable)
Description copied from interface:MutableBooleanSetFactory
- Specified by:
ofAll
in interfaceMutableBooleanSetFactory
- Since:
- 10.0
-
withAll
public MutableBooleanSet withAll(java.lang.Iterable<java.lang.Boolean> iterable)
- Specified by:
withAll
in interfaceMutableBooleanSetFactory
- Since:
- 10.0
-
-