Interface MutableCharStackFactory
- All Known Implementing Classes:
MutableCharStackFactoryImpl
public interface MutableCharStackFactory
A factory which creates instances of type
MutableCharStack.
This file was automatically generated from template file mutablePrimitiveStackFactory.stg.- Since:
- 6.0.
-
Method Summary
Modifier and Type Method Description MutableCharStackempty()MutableCharStackof()Same asempty().MutableCharStackof(char... items)Same aswith(char[]).MutableCharStackofAll(Iterable<Character> iterable)Same aswithAll(Iterable).MutableCharStackofAll(CharIterable items)Same aswithAll(CharIterable).MutableCharStackofAllReversed(CharIterable items)Same aswithAllReversed(CharIterable).MutableCharStackwith()Same asempty().MutableCharStackwith(char... items)MutableCharStackwithAll(Iterable<Character> iterable)MutableCharStackwithAll(CharIterable items)MutableCharStackwithAllReversed(CharIterable items)
-
Method Details
-
empty
MutableCharStack empty() -
of
MutableCharStack of()Same asempty(). -
with
MutableCharStack with()Same asempty(). -
of
Same aswith(char[]). -
with
-
ofAll
Same aswithAll(CharIterable). -
withAll
-
ofAll
Same aswithAll(Iterable). -
withAll
-
ofAllReversed
Same aswithAllReversed(CharIterable). -
withAllReversed
-