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 MutableBooleanSetFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description MutableBooleanSetFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableBooleanSetempty()MutableBooleanSetof()Same asMutableBooleanSetFactory.empty().MutableBooleanSetof(boolean... items)MutableBooleanSetofAll(java.lang.Iterable<java.lang.Boolean> iterable)MutableBooleanSetofAll(BooleanIterable items)MutableBooleanSetwith()Same asMutableBooleanSetFactory.empty().MutableBooleanSetwith(boolean... items)MutableBooleanSetwithAll(java.lang.Iterable<java.lang.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()
Description copied from interface:MutableBooleanSetFactorySame asMutableBooleanSetFactory.empty().- Specified by:
ofin interfaceMutableBooleanSetFactory
-
with
public MutableBooleanSet with()
Description copied from interface:MutableBooleanSetFactorySame asMutableBooleanSetFactory.empty().- Specified by:
within interfaceMutableBooleanSetFactory
-
of
public MutableBooleanSet of(boolean... items)
Description copied from interface:MutableBooleanSetFactory- Specified by:
ofin interfaceMutableBooleanSetFactory
-
with
public MutableBooleanSet with(boolean... items)
- Specified by:
within interfaceMutableBooleanSetFactory
-
ofAll
public MutableBooleanSet ofAll(BooleanIterable items)
Description copied from interface:MutableBooleanSetFactory- Specified by:
ofAllin interfaceMutableBooleanSetFactory
-
withAll
public MutableBooleanSet withAll(BooleanIterable items)
- Specified by:
withAllin interfaceMutableBooleanSetFactory
-
ofAll
public MutableBooleanSet ofAll(java.lang.Iterable<java.lang.Boolean> iterable)
Description copied from interface:MutableBooleanSetFactory- Specified by:
ofAllin interfaceMutableBooleanSetFactory- Since:
- 10.0
-
withAll
public MutableBooleanSet withAll(java.lang.Iterable<java.lang.Boolean> iterable)
- Specified by:
withAllin interfaceMutableBooleanSetFactory- Since:
- 10.0
-
-