Interface MutableLongStackFactory
-
public interface MutableLongStackFactoryA factory which creates instances of typeMutableLongStack. 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 MutableLongStackempty()MutableLongStackof()Same asempty().MutableLongStackof(long... items)Same aswith(long[]).MutableLongStackofAll(Iterable<Long> iterable)Same aswithAll(Iterable).MutableLongStackofAll(LongStream items)MutableLongStackofAll(LongIterable items)Same aswithAll(LongIterable).MutableLongStackofAllReversed(LongIterable items)Same aswithAllReversed(LongIterable).MutableLongStackwith()Same asempty().MutableLongStackwith(long... items)MutableLongStackwithAll(Iterable<Long> iterable)MutableLongStackwithAll(LongStream items)MutableLongStackwithAll(LongIterable items)MutableLongStackwithAllReversed(LongIterable items)
-
-
-
Method Detail
-
empty
MutableLongStack empty()
-
of
MutableLongStack of()
Same asempty().
-
with
MutableLongStack with()
Same asempty().
-
of
MutableLongStack of(long... items)
Same aswith(long[]).
-
with
MutableLongStack with(long... items)
-
ofAll
MutableLongStack ofAll(LongIterable items)
Same aswithAll(LongIterable).
-
withAll
MutableLongStack withAll(LongIterable items)
-
ofAll
MutableLongStack ofAll(Iterable<Long> iterable)
Same aswithAll(Iterable).
-
withAll
MutableLongStack withAll(Iterable<Long> iterable)
-
ofAllReversed
MutableLongStack ofAllReversed(LongIterable items)
Same aswithAllReversed(LongIterable).
-
withAllReversed
MutableLongStack withAllReversed(LongIterable items)
-
ofAll
MutableLongStack ofAll(LongStream items)
- Since:
- 9.0
-
withAll
MutableLongStack withAll(LongStream items)
- Since:
- 9.0
-
-