Interface ImmutableShortStackFactory
-
- All Known Implementing Classes:
ImmutableShortStackFactoryImpl
public interface ImmutableShortStackFactory
A factory which creates instances of typeImmutableShortStack
. This file was automatically generated from template file immutablePrimitiveStackFactory.stg.- Since:
- 4.0.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ImmutableShortStack
empty()
ImmutableShortStack
of()
Same asempty()
.ImmutableShortStack
of(short one)
Same aswith(short)
.ImmutableShortStack
of(short... items)
Same aswith(short[])
.ImmutableShortStack
ofAll(java.lang.Iterable<java.lang.Short> iterable)
Same aswithAll(Iterable)
.ImmutableShortStack
ofAll(ShortIterable items)
Same aswithAll(ShortIterable)
.ImmutableShortStack
ofAllReversed(ShortIterable items)
Same aswithAllReversed(ShortIterable)
.ImmutableShortStack
with()
Same asempty()
.ImmutableShortStack
with(short one)
ImmutableShortStack
with(short... items)
ImmutableShortStack
withAll(java.lang.Iterable<java.lang.Short> iterable)
ImmutableShortStack
withAll(ShortIterable items)
ImmutableShortStack
withAllReversed(ShortIterable items)
-
-
-
Method Detail
-
empty
ImmutableShortStack empty()
- Since:
- 6.0
-
of
ImmutableShortStack of()
Same asempty()
.
-
with
ImmutableShortStack with()
Same asempty()
.
-
of
ImmutableShortStack of(short one)
Same aswith(short)
.
-
with
ImmutableShortStack with(short one)
-
of
ImmutableShortStack of(short... items)
Same aswith(short[])
.
-
with
ImmutableShortStack with(short... items)
-
ofAll
ImmutableShortStack ofAll(ShortIterable items)
Same aswithAll(ShortIterable)
.
-
withAll
ImmutableShortStack withAll(ShortIterable items)
-
ofAll
ImmutableShortStack ofAll(java.lang.Iterable<java.lang.Short> iterable)
Same aswithAll(Iterable)
.
-
withAll
ImmutableShortStack withAll(java.lang.Iterable<java.lang.Short> iterable)
-
ofAllReversed
ImmutableShortStack ofAllReversed(ShortIterable items)
Same aswithAllReversed(ShortIterable)
.
-
withAllReversed
ImmutableShortStack withAllReversed(ShortIterable items)
-
-