Class MutableBooleanStackFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.stack.mutable.primitive.MutableBooleanStackFactoryImpl
-
- All Implemented Interfaces:
MutableBooleanStackFactory
public class MutableBooleanStackFactoryImpl extends 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 MutableBooleanStackFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description MutableBooleanStackFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableBooleanStackempty()MutableBooleanStackof()MutableBooleanStackof(boolean... items)MutableBooleanStackofAll(Iterable<Boolean> iterable)MutableBooleanStackofAll(BooleanIterable items)MutableBooleanStackofAllReversed(BooleanIterable items)MutableBooleanStackwith()MutableBooleanStackwith(boolean... items)MutableBooleanStackwithAll(Iterable<Boolean> iterable)MutableBooleanStackwithAll(BooleanIterable items)MutableBooleanStackwithAllReversed(BooleanIterable items)
-
-
-
Field Detail
-
INSTANCE
public static final MutableBooleanStackFactory INSTANCE
-
-
Method Detail
-
empty
public MutableBooleanStack empty()
- Specified by:
emptyin interfaceMutableBooleanStackFactory
-
of
public MutableBooleanStack of()
- Specified by:
ofin interfaceMutableBooleanStackFactory
-
with
public MutableBooleanStack with()
- Specified by:
within interfaceMutableBooleanStackFactory
-
of
public MutableBooleanStack of(boolean... items)
- Specified by:
ofin interfaceMutableBooleanStackFactory
-
with
public MutableBooleanStack with(boolean... items)
- Specified by:
within interfaceMutableBooleanStackFactory
-
ofAll
public MutableBooleanStack ofAll(BooleanIterable items)
- Specified by:
ofAllin interfaceMutableBooleanStackFactory
-
withAll
public MutableBooleanStack withAll(BooleanIterable items)
- Specified by:
withAllin interfaceMutableBooleanStackFactory
-
ofAll
public MutableBooleanStack ofAll(Iterable<Boolean> iterable)
- Specified by:
ofAllin interfaceMutableBooleanStackFactory- Since:
- 10.0
-
withAll
public MutableBooleanStack withAll(Iterable<Boolean> iterable)
- Specified by:
withAllin interfaceMutableBooleanStackFactory- Since:
- 10.0
-
ofAllReversed
public MutableBooleanStack ofAllReversed(BooleanIterable items)
- Specified by:
ofAllReversedin interfaceMutableBooleanStackFactory
-
withAllReversed
public MutableBooleanStack withAllReversed(BooleanIterable items)
- Specified by:
withAllReversedin interfaceMutableBooleanStackFactory
-
-