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 MutableBooleanStackFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description MutableBooleanStackFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableBooleanStackempty()MutableBooleanStackof()Same asMutableBooleanStackFactory.empty().MutableBooleanStackof(boolean... items)MutableBooleanStackofAll(java.lang.Iterable<java.lang.Boolean> iterable)MutableBooleanStackofAll(BooleanIterable items)MutableBooleanStackofAllReversed(BooleanIterable items)MutableBooleanStackwith()Same asMutableBooleanStackFactory.empty().MutableBooleanStackwith(boolean... items)MutableBooleanStackwithAll(java.lang.Iterable<java.lang.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()
Description copied from interface:MutableBooleanStackFactorySame asMutableBooleanStackFactory.empty().- Specified by:
ofin interfaceMutableBooleanStackFactory
-
with
public MutableBooleanStack with()
Description copied from interface:MutableBooleanStackFactorySame asMutableBooleanStackFactory.empty().- Specified by:
within interfaceMutableBooleanStackFactory
-
of
public MutableBooleanStack of(boolean... items)
Description copied from interface:MutableBooleanStackFactory- Specified by:
ofin interfaceMutableBooleanStackFactory
-
with
public MutableBooleanStack with(boolean... items)
- Specified by:
within interfaceMutableBooleanStackFactory
-
ofAll
public MutableBooleanStack ofAll(BooleanIterable items)
Description copied from interface:MutableBooleanStackFactory- Specified by:
ofAllin interfaceMutableBooleanStackFactory
-
withAll
public MutableBooleanStack withAll(BooleanIterable items)
- Specified by:
withAllin interfaceMutableBooleanStackFactory
-
ofAll
public MutableBooleanStack ofAll(java.lang.Iterable<java.lang.Boolean> iterable)
Description copied from interface:MutableBooleanStackFactory- Specified by:
ofAllin interfaceMutableBooleanStackFactory- Since:
- 10.0
-
withAll
public MutableBooleanStack withAll(java.lang.Iterable<java.lang.Boolean> iterable)
- Specified by:
withAllin interfaceMutableBooleanStackFactory- Since:
- 10.0
-
ofAllReversed
public MutableBooleanStack ofAllReversed(BooleanIterable items)
Description copied from interface:MutableBooleanStackFactory- Specified by:
ofAllReversedin interfaceMutableBooleanStackFactory
-
withAllReversed
public MutableBooleanStack withAllReversed(BooleanIterable items)
- Specified by:
withAllReversedin interfaceMutableBooleanStackFactory
-
-