Interface MutableCharStackFactory
-
- All Known Implementing Classes:
MutableCharStackFactoryImpl
public interface MutableCharStackFactory
A 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 MutableCharStack
empty()
MutableCharStack
of()
Same asempty()
.MutableCharStack
of(char... items)
Same aswith(char[])
.MutableCharStack
ofAll(java.lang.Iterable<java.lang.Character> iterable)
Same aswithAll(Iterable)
.MutableCharStack
ofAll(CharIterable items)
Same aswithAll(CharIterable)
.MutableCharStack
ofAllReversed(CharIterable items)
Same aswithAllReversed(CharIterable)
.MutableCharStack
with()
Same asempty()
.MutableCharStack
with(char... items)
MutableCharStack
withAll(java.lang.Iterable<java.lang.Character> iterable)
MutableCharStack
withAll(CharIterable items)
MutableCharStack
withAllReversed(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(java.lang.Iterable<java.lang.Character> iterable)
Same aswithAll(Iterable)
.
-
withAll
MutableCharStack withAll(java.lang.Iterable<java.lang.Character> iterable)
-
ofAllReversed
MutableCharStack ofAllReversed(CharIterable items)
Same aswithAllReversed(CharIterable)
.
-
withAllReversed
MutableCharStack withAllReversed(CharIterable items)
-
-