Interface MutableShortStackFactory
-
public interface MutableShortStackFactoryA 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 MutableShortStackempty()MutableShortStackof()Same asempty().MutableShortStackof(short... items)Same aswith(short[]).MutableShortStackofAll(Iterable<Short> iterable)Same aswithAll(Iterable).MutableShortStackofAll(ShortIterable items)Same aswithAll(ShortIterable).MutableShortStackofAllReversed(ShortIterable items)Same aswithAllReversed(ShortIterable).MutableShortStackwith()Same asempty().MutableShortStackwith(short... items)MutableShortStackwithAll(Iterable<Short> iterable)MutableShortStackwithAll(ShortIterable items)MutableShortStackwithAllReversed(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(Iterable<Short> iterable)
Same aswithAll(Iterable).
-
withAll
MutableShortStack withAll(Iterable<Short> iterable)
-
ofAllReversed
MutableShortStack ofAllReversed(ShortIterable items)
Same aswithAllReversed(ShortIterable).
-
withAllReversed
MutableShortStack withAllReversed(ShortIterable items)
-
-