Class ImmutableBooleanBagFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.bag.immutable.primitive.ImmutableBooleanBagFactoryImpl
-
- All Implemented Interfaces:
ImmutableBooleanBagFactory
public class ImmutableBooleanBagFactoryImpl extends java.lang.Object implements ImmutableBooleanBagFactory
ImmutableBooleanBagFactoryImpl is a factory implementation which creates instances of typeImmutableBooleanBag
. This file was automatically generated from template file immutablePrimitiveBagFactoryImpl.stg.- Since:
- 4.0.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableBooleanBagFactory
INSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableBooleanBagFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableBooleanBag
empty()
ImmutableBooleanBag
of()
Same asImmutableBooleanBagFactory.empty()
.ImmutableBooleanBag
of(boolean one)
ImmutableBooleanBag
of(boolean... items)
ImmutableBooleanBag
ofAll(java.lang.Iterable<java.lang.Boolean> iterable)
ImmutableBooleanBag
ofAll(BooleanIterable items)
ImmutableBooleanBag
with()
Same asImmutableBooleanBagFactory.empty()
.ImmutableBooleanBag
with(boolean one)
ImmutableBooleanBag
with(boolean... items)
ImmutableBooleanBag
withAll(java.lang.Iterable<java.lang.Boolean> iterable)
ImmutableBooleanBag
withAll(BooleanIterable items)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableBooleanBagFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableBooleanBag empty()
- Specified by:
empty
in interfaceImmutableBooleanBagFactory
-
of
public ImmutableBooleanBag of()
Description copied from interface:ImmutableBooleanBagFactory
Same asImmutableBooleanBagFactory.empty()
.- Specified by:
of
in interfaceImmutableBooleanBagFactory
-
with
public ImmutableBooleanBag with()
Description copied from interface:ImmutableBooleanBagFactory
Same asImmutableBooleanBagFactory.empty()
.- Specified by:
with
in interfaceImmutableBooleanBagFactory
-
of
public ImmutableBooleanBag of(boolean one)
Description copied from interface:ImmutableBooleanBagFactory
- Specified by:
of
in interfaceImmutableBooleanBagFactory
-
with
public ImmutableBooleanBag with(boolean one)
- Specified by:
with
in interfaceImmutableBooleanBagFactory
-
of
public ImmutableBooleanBag of(boolean... items)
Description copied from interface:ImmutableBooleanBagFactory
- Specified by:
of
in interfaceImmutableBooleanBagFactory
-
with
public ImmutableBooleanBag with(boolean... items)
- Specified by:
with
in interfaceImmutableBooleanBagFactory
-
ofAll
public ImmutableBooleanBag ofAll(BooleanIterable items)
Description copied from interface:ImmutableBooleanBagFactory
- Specified by:
ofAll
in interfaceImmutableBooleanBagFactory
-
withAll
public ImmutableBooleanBag withAll(BooleanIterable items)
- Specified by:
withAll
in interfaceImmutableBooleanBagFactory
-
ofAll
public ImmutableBooleanBag ofAll(java.lang.Iterable<java.lang.Boolean> iterable)
Description copied from interface:ImmutableBooleanBagFactory
- Specified by:
ofAll
in interfaceImmutableBooleanBagFactory
- Since:
- 10.0
-
withAll
public ImmutableBooleanBag withAll(java.lang.Iterable<java.lang.Boolean> iterable)
- Specified by:
withAll
in interfaceImmutableBooleanBagFactory
- Since:
- 10.0
-
-