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 ImmutableBooleanBagFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableBooleanBagFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableBooleanBagempty()ImmutableBooleanBagof()Same asImmutableBooleanBagFactory.empty().ImmutableBooleanBagof(boolean one)ImmutableBooleanBagof(boolean... items)ImmutableBooleanBagofAll(java.lang.Iterable<java.lang.Boolean> iterable)ImmutableBooleanBagofAll(BooleanIterable items)ImmutableBooleanBagwith()Same asImmutableBooleanBagFactory.empty().ImmutableBooleanBagwith(boolean one)ImmutableBooleanBagwith(boolean... items)ImmutableBooleanBagwithAll(java.lang.Iterable<java.lang.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()
Description copied from interface:ImmutableBooleanBagFactorySame asImmutableBooleanBagFactory.empty().- Specified by:
ofin interfaceImmutableBooleanBagFactory
-
with
public ImmutableBooleanBag with()
Description copied from interface:ImmutableBooleanBagFactorySame asImmutableBooleanBagFactory.empty().- Specified by:
within interfaceImmutableBooleanBagFactory
-
of
public ImmutableBooleanBag of(boolean one)
Description copied from interface:ImmutableBooleanBagFactory- Specified by:
ofin interfaceImmutableBooleanBagFactory
-
with
public ImmutableBooleanBag with(boolean one)
- Specified by:
within interfaceImmutableBooleanBagFactory
-
of
public ImmutableBooleanBag of(boolean... items)
Description copied from interface:ImmutableBooleanBagFactory- Specified by:
ofin interfaceImmutableBooleanBagFactory
-
with
public ImmutableBooleanBag with(boolean... items)
- Specified by:
within interfaceImmutableBooleanBagFactory
-
ofAll
public ImmutableBooleanBag ofAll(BooleanIterable items)
Description copied from interface:ImmutableBooleanBagFactory- Specified by:
ofAllin interfaceImmutableBooleanBagFactory
-
withAll
public ImmutableBooleanBag withAll(BooleanIterable items)
- Specified by:
withAllin interfaceImmutableBooleanBagFactory
-
ofAll
public ImmutableBooleanBag ofAll(java.lang.Iterable<java.lang.Boolean> iterable)
Description copied from interface:ImmutableBooleanBagFactory- Specified by:
ofAllin interfaceImmutableBooleanBagFactory- Since:
- 10.0
-
withAll
public ImmutableBooleanBag withAll(java.lang.Iterable<java.lang.Boolean> iterable)
- Specified by:
withAllin interfaceImmutableBooleanBagFactory- Since:
- 10.0
-
-