Interface MutableBooleanStackFactory
-
public interface MutableBooleanStackFactoryA 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 MutableBooleanStackempty()MutableBooleanStackof()Same asempty().MutableBooleanStackof(boolean... items)Same aswith(boolean[]).MutableBooleanStackofAll(Iterable<Boolean> iterable)Same aswithAll(Iterable).MutableBooleanStackofAll(BooleanIterable items)Same aswithAll(BooleanIterable).MutableBooleanStackofAllReversed(BooleanIterable items)Same aswithAllReversed(BooleanIterable).MutableBooleanStackwith()Same asempty().MutableBooleanStackwith(boolean... items)MutableBooleanStackwithAll(Iterable<Boolean> iterable)MutableBooleanStackwithAll(BooleanIterable items)MutableBooleanStackwithAllReversed(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(Iterable<Boolean> iterable)
Same aswithAll(Iterable).
-
withAll
MutableBooleanStack withAll(Iterable<Boolean> iterable)
-
ofAllReversed
MutableBooleanStack ofAllReversed(BooleanIterable items)
Same aswithAllReversed(BooleanIterable).
-
withAllReversed
MutableBooleanStack withAllReversed(BooleanIterable items)
-
-