Interface MutableIntStackFactory
-
- All Known Implementing Classes:
MutableIntStackFactoryImpl
public interface MutableIntStackFactory
A factory which creates instances of typeMutableIntStack
. 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 MutableIntStack
empty()
MutableIntStack
of()
Same asempty()
.MutableIntStack
of(int... items)
Same aswith(int[])
.MutableIntStack
ofAll(java.lang.Iterable<java.lang.Integer> iterable)
Same aswithAll(Iterable)
.MutableIntStack
ofAll(java.util.stream.IntStream items)
MutableIntStack
ofAll(IntIterable items)
Same aswithAll(IntIterable)
.MutableIntStack
ofAllReversed(IntIterable items)
Same aswithAllReversed(IntIterable)
.MutableIntStack
with()
Same asempty()
.MutableIntStack
with(int... items)
MutableIntStack
withAll(java.lang.Iterable<java.lang.Integer> iterable)
MutableIntStack
withAll(java.util.stream.IntStream items)
MutableIntStack
withAll(IntIterable items)
MutableIntStack
withAllReversed(IntIterable items)
-
-
-
Method Detail
-
empty
MutableIntStack empty()
-
of
MutableIntStack of()
Same asempty()
.
-
with
MutableIntStack with()
Same asempty()
.
-
of
MutableIntStack of(int... items)
Same aswith(int[])
.
-
with
MutableIntStack with(int... items)
-
ofAll
MutableIntStack ofAll(IntIterable items)
Same aswithAll(IntIterable)
.
-
withAll
MutableIntStack withAll(IntIterable items)
-
ofAll
MutableIntStack ofAll(java.lang.Iterable<java.lang.Integer> iterable)
Same aswithAll(Iterable)
.
-
withAll
MutableIntStack withAll(java.lang.Iterable<java.lang.Integer> iterable)
-
ofAllReversed
MutableIntStack ofAllReversed(IntIterable items)
Same aswithAllReversed(IntIterable)
.
-
withAllReversed
MutableIntStack withAllReversed(IntIterable items)
-
ofAll
MutableIntStack ofAll(java.util.stream.IntStream items)
- Since:
- 9.0
-
withAll
MutableIntStack withAll(java.util.stream.IntStream items)
- Since:
- 9.0
-
-