Class ImmutableBooleanSetFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.set.immutable.primitive.ImmutableBooleanSetFactoryImpl
-
- All Implemented Interfaces:
ImmutableBooleanSetFactory
public class ImmutableBooleanSetFactoryImpl extends 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()ImmutableBooleanSetof(boolean one)ImmutableBooleanSetof(boolean... items)ImmutableBooleanSetofAll(Iterable<Boolean> iterable)ImmutableBooleanSetofAll(BooleanIterable items)ImmutableBooleanSetwith()ImmutableBooleanSetwith(boolean one)ImmutableBooleanSetwith(boolean... items)ImmutableBooleanSetwithAll(Iterable<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()
- Specified by:
ofin interfaceImmutableBooleanSetFactory
-
with
public ImmutableBooleanSet with()
- Specified by:
within interfaceImmutableBooleanSetFactory
-
of
public ImmutableBooleanSet of(boolean one)
- Specified by:
ofin interfaceImmutableBooleanSetFactory
-
with
public ImmutableBooleanSet with(boolean one)
- Specified by:
within interfaceImmutableBooleanSetFactory
-
of
public ImmutableBooleanSet of(boolean... items)
- Specified by:
ofin interfaceImmutableBooleanSetFactory
-
with
public ImmutableBooleanSet with(boolean... items)
- Specified by:
within interfaceImmutableBooleanSetFactory
-
ofAll
public ImmutableBooleanSet ofAll(BooleanIterable items)
- Specified by:
ofAllin interfaceImmutableBooleanSetFactory
-
withAll
public ImmutableBooleanSet withAll(BooleanIterable items)
- Specified by:
withAllin interfaceImmutableBooleanSetFactory
-
ofAll
public ImmutableBooleanSet ofAll(Iterable<Boolean> iterable)
- Specified by:
ofAllin interfaceImmutableBooleanSetFactory- Since:
- 10.0
-
withAll
public ImmutableBooleanSet withAll(Iterable<Boolean> iterable)
- Specified by:
withAllin interfaceImmutableBooleanSetFactory- Since:
- 10.0
-
-