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