Class ImmutableBooleanSetFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.set.immutable.primitive.ImmutableBooleanSetFactoryImpl
-
- All Implemented Interfaces:
ImmutableBooleanSetFactory
public class ImmutableBooleanSetFactoryImpl extends java.lang.Object implements ImmutableBooleanSetFactory
ImmutableBooleanSetFactoryImpl is a factory implementation which creates instances of typeImmutableBooleanSet.- Since:
- 4.0.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableBooleanSetFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableBooleanSetFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableBooleanSetempty()ImmutableBooleanSetof()Same asImmutableBooleanSetFactory.empty().ImmutableBooleanSetof(boolean one)ImmutableBooleanSetof(boolean... items)ImmutableBooleanSetofAll(java.lang.Iterable<java.lang.Boolean> iterable)ImmutableBooleanSetofAll(BooleanIterable items)ImmutableBooleanSetwith()Same asImmutableBooleanSetFactory.empty().ImmutableBooleanSetwith(boolean one)ImmutableBooleanSetwith(boolean... items)ImmutableBooleanSetwithAll(java.lang.Iterable<java.lang.Boolean> iterable)ImmutableBooleanSetwithAll(BooleanIterable items)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableBooleanSetFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableBooleanSet empty()
- Specified by:
emptyin interfaceImmutableBooleanSetFactory
-
of
public ImmutableBooleanSet of()
Description copied from interface:ImmutableBooleanSetFactorySame asImmutableBooleanSetFactory.empty().- Specified by:
ofin interfaceImmutableBooleanSetFactory
-
with
public ImmutableBooleanSet with()
Description copied from interface:ImmutableBooleanSetFactorySame asImmutableBooleanSetFactory.empty().- Specified by:
within interfaceImmutableBooleanSetFactory
-
of
public ImmutableBooleanSet of(boolean one)
Description copied from interface:ImmutableBooleanSetFactory- Specified by:
ofin interfaceImmutableBooleanSetFactory
-
with
public ImmutableBooleanSet with(boolean one)
- Specified by:
within interfaceImmutableBooleanSetFactory
-
of
public ImmutableBooleanSet of(boolean... items)
Description copied from interface:ImmutableBooleanSetFactory- Specified by:
ofin interfaceImmutableBooleanSetFactory
-
with
public ImmutableBooleanSet with(boolean... items)
- Specified by:
within interfaceImmutableBooleanSetFactory
-
ofAll
public ImmutableBooleanSet ofAll(BooleanIterable items)
Description copied from interface:ImmutableBooleanSetFactory- Specified by:
ofAllin interfaceImmutableBooleanSetFactory
-
withAll
public ImmutableBooleanSet withAll(BooleanIterable items)
- Specified by:
withAllin interfaceImmutableBooleanSetFactory
-
ofAll
public ImmutableBooleanSet ofAll(java.lang.Iterable<java.lang.Boolean> iterable)
Description copied from interface:ImmutableBooleanSetFactory- Specified by:
ofAllin interfaceImmutableBooleanSetFactory- Since:
- 10.0
-
withAll
public ImmutableBooleanSet withAll(java.lang.Iterable<java.lang.Boolean> iterable)
- Specified by:
withAllin interfaceImmutableBooleanSetFactory- Since:
- 10.0
-
-