Interface MutableShortStackFactory
-
- All Known Implementing Classes:
MutableShortStackFactoryImpl
public interface MutableShortStackFactory
A factory which creates instances of typeMutableShortStack
. 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 MutableShortStack
empty()
MutableShortStack
of()
Same asempty()
.MutableShortStack
of(short... items)
Same aswith(short[])
.MutableShortStack
ofAll(java.lang.Iterable<java.lang.Short> iterable)
Same aswithAll(Iterable)
.MutableShortStack
ofAll(ShortIterable items)
Same aswithAll(ShortIterable)
.MutableShortStack
ofAllReversed(ShortIterable items)
Same aswithAllReversed(ShortIterable)
.MutableShortStack
with()
Same asempty()
.MutableShortStack
with(short... items)
MutableShortStack
withAll(java.lang.Iterable<java.lang.Short> iterable)
MutableShortStack
withAll(ShortIterable items)
MutableShortStack
withAllReversed(ShortIterable items)
-
-
-
Method Detail
-
empty
MutableShortStack empty()
-
of
MutableShortStack of()
Same asempty()
.
-
with
MutableShortStack with()
Same asempty()
.
-
of
MutableShortStack of(short... items)
Same aswith(short[])
.
-
with
MutableShortStack with(short... items)
-
ofAll
MutableShortStack ofAll(ShortIterable items)
Same aswithAll(ShortIterable)
.
-
withAll
MutableShortStack withAll(ShortIterable items)
-
ofAll
MutableShortStack ofAll(java.lang.Iterable<java.lang.Short> iterable)
Same aswithAll(Iterable)
.
-
withAll
MutableShortStack withAll(java.lang.Iterable<java.lang.Short> iterable)
-
ofAllReversed
MutableShortStack ofAllReversed(ShortIterable items)
Same aswithAllReversed(ShortIterable)
.
-
withAllReversed
MutableShortStack withAllReversed(ShortIterable items)
-
-