Class MutableBooleanSetFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.set.mutable.primitive.MutableBooleanSetFactoryImpl
-
- All Implemented Interfaces:
MutableBooleanSetFactory
public class MutableBooleanSetFactoryImpl extends 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 MutableBooleanSetFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description MutableBooleanSetFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableBooleanSetempty()MutableBooleanSetof()MutableBooleanSetof(boolean... items)MutableBooleanSetofAll(Iterable<Boolean> iterable)MutableBooleanSetofAll(BooleanIterable items)MutableBooleanSetwith()MutableBooleanSetwith(boolean... items)MutableBooleanSetwithAll(Iterable<Boolean> iterable)MutableBooleanSetwithAll(BooleanIterable items)
-
-
-
Field Detail
-
INSTANCE
public static final MutableBooleanSetFactory INSTANCE
-
-
Method Detail
-
empty
public MutableBooleanSet empty()
- Specified by:
emptyin interfaceMutableBooleanSetFactory
-
of
public MutableBooleanSet of()
- Specified by:
ofin interfaceMutableBooleanSetFactory
-
with
public MutableBooleanSet with()
- Specified by:
within interfaceMutableBooleanSetFactory
-
of
public MutableBooleanSet of(boolean... items)
- Specified by:
ofin interfaceMutableBooleanSetFactory
-
with
public MutableBooleanSet with(boolean... items)
- Specified by:
within interfaceMutableBooleanSetFactory
-
ofAll
public MutableBooleanSet ofAll(BooleanIterable items)
- Specified by:
ofAllin interfaceMutableBooleanSetFactory
-
withAll
public MutableBooleanSet withAll(BooleanIterable items)
- Specified by:
withAllin interfaceMutableBooleanSetFactory
-
ofAll
public MutableBooleanSet ofAll(Iterable<Boolean> iterable)
- Specified by:
ofAllin interfaceMutableBooleanSetFactory- Since:
- 10.0
-
withAll
public MutableBooleanSet withAll(Iterable<Boolean> iterable)
- Specified by:
withAllin interfaceMutableBooleanSetFactory- Since:
- 10.0
-
-