Class ImmutableBooleanBagFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.bag.immutable.primitive.ImmutableBooleanBagFactoryImpl
-
- All Implemented Interfaces:
ImmutableBooleanBagFactory
public class ImmutableBooleanBagFactoryImpl extends 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 ImmutableBooleanBagFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableBooleanBagFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableBooleanBagempty()ImmutableBooleanBagof()ImmutableBooleanBagof(boolean one)ImmutableBooleanBagof(boolean... items)ImmutableBooleanBagofAll(Iterable<Boolean> iterable)ImmutableBooleanBagofAll(BooleanIterable items)ImmutableBooleanBagwith()ImmutableBooleanBagwith(boolean one)ImmutableBooleanBagwith(boolean... items)ImmutableBooleanBagwithAll(Iterable<Boolean> iterable)ImmutableBooleanBagwithAll(BooleanIterable items)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableBooleanBagFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableBooleanBag empty()
- Specified by:
emptyin interfaceImmutableBooleanBagFactory
-
of
public ImmutableBooleanBag of()
- Specified by:
ofin interfaceImmutableBooleanBagFactory
-
with
public ImmutableBooleanBag with()
- Specified by:
within interfaceImmutableBooleanBagFactory
-
of
public ImmutableBooleanBag of(boolean one)
- Specified by:
ofin interfaceImmutableBooleanBagFactory
-
with
public ImmutableBooleanBag with(boolean one)
- Specified by:
within interfaceImmutableBooleanBagFactory
-
of
public ImmutableBooleanBag of(boolean... items)
- Specified by:
ofin interfaceImmutableBooleanBagFactory
-
with
public ImmutableBooleanBag with(boolean... items)
- Specified by:
within interfaceImmutableBooleanBagFactory
-
ofAll
public ImmutableBooleanBag ofAll(BooleanIterable items)
- Specified by:
ofAllin interfaceImmutableBooleanBagFactory
-
withAll
public ImmutableBooleanBag withAll(BooleanIterable items)
- Specified by:
withAllin interfaceImmutableBooleanBagFactory
-
ofAll
public ImmutableBooleanBag ofAll(Iterable<Boolean> iterable)
- Specified by:
ofAllin interfaceImmutableBooleanBagFactory- Since:
- 10.0
-
withAll
public ImmutableBooleanBag withAll(Iterable<Boolean> iterable)
- Specified by:
withAllin interfaceImmutableBooleanBagFactory- Since:
- 10.0
-
-