Interface MutableIntStackFactory
- All Known Implementing Classes:
MutableIntStackFactoryImpl
public interface MutableIntStackFactory
A factory which creates instances of type
MutableIntStack.
This file was automatically generated from template file mutablePrimitiveStackFactory.stg.- Since:
- 6.0.
-
Method Summary
Modifier and Type Method Description MutableIntStackempty()MutableIntStackof()Same asempty().MutableIntStackof(int... items)Same aswith(int[]).MutableIntStackofAll(Iterable<Integer> iterable)Same aswithAll(Iterable).MutableIntStackofAll(IntStream items)MutableIntStackofAll(IntIterable items)Same aswithAll(IntIterable).MutableIntStackofAllReversed(IntIterable items)Same aswithAllReversed(IntIterable).MutableIntStackwith()Same asempty().MutableIntStackwith(int... items)MutableIntStackwithAll(Iterable<Integer> iterable)MutableIntStackwithAll(IntStream items)MutableIntStackwithAll(IntIterable items)MutableIntStackwithAllReversed(IntIterable items)
-
Method Details
-
empty
MutableIntStack empty() -
of
MutableIntStack of()Same asempty(). -
with
MutableIntStack with()Same asempty(). -
of
Same aswith(int[]). -
with
-
ofAll
Same aswithAll(IntIterable). -
withAll
-
ofAll
Same aswithAll(Iterable). -
withAll
-
ofAllReversed
Same aswithAllReversed(IntIterable). -
withAllReversed
-
ofAll
- Since:
- 9.0
-
withAll
- Since:
- 9.0
-