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 ImmutableBooleanSetFactory
INSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableBooleanSetFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableBooleanSet
empty()
ImmutableBooleanSet
of()
Same asImmutableBooleanSetFactory.empty()
.ImmutableBooleanSet
of(boolean one)
ImmutableBooleanSet
of(boolean... items)
ImmutableBooleanSet
ofAll(java.lang.Iterable<java.lang.Boolean> iterable)
ImmutableBooleanSet
ofAll(BooleanIterable items)
ImmutableBooleanSet
with()
Same asImmutableBooleanSetFactory.empty()
.ImmutableBooleanSet
with(boolean one)
ImmutableBooleanSet
with(boolean... items)
ImmutableBooleanSet
withAll(java.lang.Iterable<java.lang.Boolean> iterable)
ImmutableBooleanSet
withAll(BooleanIterable items)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableBooleanSetFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableBooleanSet empty()
- Specified by:
empty
in interfaceImmutableBooleanSetFactory
-
of
public ImmutableBooleanSet of()
Description copied from interface:ImmutableBooleanSetFactory
Same asImmutableBooleanSetFactory.empty()
.- Specified by:
of
in interfaceImmutableBooleanSetFactory
-
with
public ImmutableBooleanSet with()
Description copied from interface:ImmutableBooleanSetFactory
Same asImmutableBooleanSetFactory.empty()
.- Specified by:
with
in interfaceImmutableBooleanSetFactory
-
of
public ImmutableBooleanSet of(boolean one)
Description copied from interface:ImmutableBooleanSetFactory
- Specified by:
of
in interfaceImmutableBooleanSetFactory
-
with
public ImmutableBooleanSet with(boolean one)
- Specified by:
with
in interfaceImmutableBooleanSetFactory
-
of
public ImmutableBooleanSet of(boolean... items)
Description copied from interface:ImmutableBooleanSetFactory
- Specified by:
of
in interfaceImmutableBooleanSetFactory
-
with
public ImmutableBooleanSet with(boolean... items)
- Specified by:
with
in interfaceImmutableBooleanSetFactory
-
ofAll
public ImmutableBooleanSet ofAll(BooleanIterable items)
Description copied from interface:ImmutableBooleanSetFactory
- Specified by:
ofAll
in interfaceImmutableBooleanSetFactory
-
withAll
public ImmutableBooleanSet withAll(BooleanIterable items)
- Specified by:
withAll
in interfaceImmutableBooleanSetFactory
-
ofAll
public ImmutableBooleanSet ofAll(java.lang.Iterable<java.lang.Boolean> iterable)
Description copied from interface:ImmutableBooleanSetFactory
- Specified by:
ofAll
in interfaceImmutableBooleanSetFactory
- Since:
- 10.0
-
withAll
public ImmutableBooleanSet withAll(java.lang.Iterable<java.lang.Boolean> iterable)
- Specified by:
withAll
in interfaceImmutableBooleanSetFactory
- Since:
- 10.0
-
-