Interface MutableIntStackFactory
-
public interface MutableIntStackFactoryA 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 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 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(Iterable<Integer> iterable)
Same aswithAll(Iterable).
-
withAll
MutableIntStack withAll(Iterable<Integer> iterable)
-
ofAllReversed
MutableIntStack ofAllReversed(IntIterable items)
Same aswithAllReversed(IntIterable).
-
withAllReversed
MutableIntStack withAllReversed(IntIterable items)
-
ofAll
MutableIntStack ofAll(IntStream items)
- Since:
- 9.0
-
withAll
MutableIntStack withAll(IntStream items)
- Since:
- 9.0
-
-