Interface MutableCharStackFactory
-
public interface MutableCharStackFactoryA factory which creates instances of typeMutableCharStack. 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 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 Detail
-
empty
MutableCharStack empty()
-
of
MutableCharStack of()
Same asempty().
-
with
MutableCharStack with()
Same asempty().
-
of
MutableCharStack of(char... items)
Same aswith(char[]).
-
with
MutableCharStack with(char... items)
-
ofAll
MutableCharStack ofAll(CharIterable items)
Same aswithAll(CharIterable).
-
withAll
MutableCharStack withAll(CharIterable items)
-
ofAll
MutableCharStack ofAll(Iterable<Character> iterable)
Same aswithAll(Iterable).
-
withAll
MutableCharStack withAll(Iterable<Character> iterable)
-
ofAllReversed
MutableCharStack ofAllReversed(CharIterable items)
Same aswithAllReversed(CharIterable).
-
withAllReversed
MutableCharStack withAllReversed(CharIterable items)
-
-