Interface MutableBooleanStackFactory
-
- All Known Implementing Classes:
MutableBooleanStackFactoryImpl
public interface MutableBooleanStackFactory
A factory which creates instances of typeMutableBooleanStack
. This file was automatically generated from template file mutablePrimitiveStackFactory.stg.- Since:
- 6.0.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MutableBooleanStack
empty()
MutableBooleanStack
of()
Same asempty()
.MutableBooleanStack
of(boolean... items)
Same aswith(boolean[])
.MutableBooleanStack
ofAll(java.lang.Iterable<java.lang.Boolean> iterable)
Same aswithAll(Iterable)
.MutableBooleanStack
ofAll(BooleanIterable items)
Same aswithAll(BooleanIterable)
.MutableBooleanStack
ofAllReversed(BooleanIterable items)
Same aswithAllReversed(BooleanIterable)
.MutableBooleanStack
with()
Same asempty()
.MutableBooleanStack
with(boolean... items)
MutableBooleanStack
withAll(java.lang.Iterable<java.lang.Boolean> iterable)
MutableBooleanStack
withAll(BooleanIterable items)
MutableBooleanStack
withAllReversed(BooleanIterable items)
-
-
-
Method Detail
-
empty
MutableBooleanStack empty()
-
of
MutableBooleanStack of()
Same asempty()
.
-
with
MutableBooleanStack with()
Same asempty()
.
-
of
MutableBooleanStack of(boolean... items)
Same aswith(boolean[])
.
-
with
MutableBooleanStack with(boolean... items)
-
ofAll
MutableBooleanStack ofAll(BooleanIterable items)
Same aswithAll(BooleanIterable)
.
-
withAll
MutableBooleanStack withAll(BooleanIterable items)
-
ofAll
MutableBooleanStack ofAll(java.lang.Iterable<java.lang.Boolean> iterable)
Same aswithAll(Iterable)
.
-
withAll
MutableBooleanStack withAll(java.lang.Iterable<java.lang.Boolean> iterable)
-
ofAllReversed
MutableBooleanStack ofAllReversed(BooleanIterable items)
Same aswithAllReversed(BooleanIterable)
.
-
withAllReversed
MutableBooleanStack withAllReversed(BooleanIterable items)
-
-