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