Interface ImmutableShortStackFactory
-
public interface ImmutableShortStackFactoryA 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 ImmutableShortStackempty()ImmutableShortStackof()Same asempty().ImmutableShortStackof(short one)Same aswith(short).ImmutableShortStackof(short... items)Same aswith(short[]).ImmutableShortStackofAll(Iterable<Short> iterable)Same aswithAll(Iterable).ImmutableShortStackofAll(ShortIterable items)Same aswithAll(ShortIterable).ImmutableShortStackofAllReversed(ShortIterable items)Same aswithAllReversed(ShortIterable).ImmutableShortStackwith()Same asempty().ImmutableShortStackwith(short one)ImmutableShortStackwith(short... items)ImmutableShortStackwithAll(Iterable<Short> iterable)ImmutableShortStackwithAll(ShortIterable items)ImmutableShortStackwithAllReversed(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(Iterable<Short> iterable)
Same aswithAll(Iterable).
-
withAll
ImmutableShortStack withAll(Iterable<Short> iterable)
-
ofAllReversed
ImmutableShortStack ofAllReversed(ShortIterable items)
Same aswithAllReversed(ShortIterable).
-
withAllReversed
ImmutableShortStack withAllReversed(ShortIterable items)
-
-