Interface MutableLongStackFactory
-
- All Known Implementing Classes:
MutableLongStackFactoryImpl
public interface MutableLongStackFactory
A 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 MutableLongStack
empty()
MutableLongStack
of()
Same asempty()
.MutableLongStack
of(long... items)
Same aswith(long[])
.MutableLongStack
ofAll(java.lang.Iterable<java.lang.Long> iterable)
Same aswithAll(Iterable)
.MutableLongStack
ofAll(java.util.stream.LongStream items)
MutableLongStack
ofAll(LongIterable items)
Same aswithAll(LongIterable)
.MutableLongStack
ofAllReversed(LongIterable items)
Same aswithAllReversed(LongIterable)
.MutableLongStack
with()
Same asempty()
.MutableLongStack
with(long... items)
MutableLongStack
withAll(java.lang.Iterable<java.lang.Long> iterable)
MutableLongStack
withAll(java.util.stream.LongStream items)
MutableLongStack
withAll(LongIterable items)
MutableLongStack
withAllReversed(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(java.lang.Iterable<java.lang.Long> iterable)
Same aswithAll(Iterable)
.
-
withAll
MutableLongStack withAll(java.lang.Iterable<java.lang.Long> iterable)
-
ofAllReversed
MutableLongStack ofAllReversed(LongIterable items)
Same aswithAllReversed(LongIterable)
.
-
withAllReversed
MutableLongStack withAllReversed(LongIterable items)
-
ofAll
MutableLongStack ofAll(java.util.stream.LongStream items)
- Since:
- 9.0
-
withAll
MutableLongStack withAll(java.util.stream.LongStream items)
- Since:
- 9.0
-
-