Class ImmutableBooleanListFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.list.immutable.primitive.ImmutableBooleanListFactoryImpl
-
- All Implemented Interfaces:
ImmutableBooleanListFactory
public class ImmutableBooleanListFactoryImpl extends 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 ImmutableBooleanListFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableBooleanListFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableBooleanListempty()ImmutableBooleanListof()ImmutableBooleanListof(boolean one)ImmutableBooleanListof(boolean... items)ImmutableBooleanListofAll(Iterable<Boolean> iterable)ImmutableBooleanListofAll(BooleanIterable items)ImmutableBooleanListwith()ImmutableBooleanListwith(boolean one)ImmutableBooleanListwith(boolean... items)ImmutableBooleanListwithAll(Iterable<Boolean> iterable)ImmutableBooleanListwithAll(BooleanIterable items)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableBooleanListFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableBooleanList empty()
- Specified by:
emptyin interfaceImmutableBooleanListFactory
-
of
public ImmutableBooleanList of()
- Specified by:
ofin interfaceImmutableBooleanListFactory
-
with
public ImmutableBooleanList with()
- Specified by:
within interfaceImmutableBooleanListFactory
-
of
public ImmutableBooleanList of(boolean one)
- Specified by:
ofin interfaceImmutableBooleanListFactory
-
with
public ImmutableBooleanList with(boolean one)
- Specified by:
within interfaceImmutableBooleanListFactory
-
of
public ImmutableBooleanList of(boolean... items)
- Specified by:
ofin interfaceImmutableBooleanListFactory
-
with
public ImmutableBooleanList with(boolean... items)
- Specified by:
within interfaceImmutableBooleanListFactory
-
ofAll
public ImmutableBooleanList ofAll(BooleanIterable items)
- Specified by:
ofAllin interfaceImmutableBooleanListFactory
-
withAll
public ImmutableBooleanList withAll(BooleanIterable items)
- Specified by:
withAllin interfaceImmutableBooleanListFactory
-
ofAll
public ImmutableBooleanList ofAll(Iterable<Boolean> iterable)
- Specified by:
ofAllin interfaceImmutableBooleanListFactory- Since:
- 10.0
-
withAll
public ImmutableBooleanList withAll(Iterable<Boolean> iterable)
- Specified by:
withAllin interfaceImmutableBooleanListFactory- Since:
- 10.0
-
-