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