Interface ImmutableLongStackFactory
-
public interface ImmutableLongStackFactoryA factory which creates instances of typeImmutableLongStack. 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 ImmutableLongStackempty()ImmutableLongStackof()Same asempty().ImmutableLongStackof(long one)Same aswith(long).ImmutableLongStackof(long... items)Same aswith(long[]).ImmutableLongStackofAll(Iterable<Long> iterable)Same aswithAll(Iterable).ImmutableLongStackofAll(LongStream items)ImmutableLongStackofAll(LongIterable items)Same aswithAll(LongIterable).ImmutableLongStackofAllReversed(LongIterable items)Same aswithAllReversed(LongIterable).ImmutableLongStackwith()Same asempty().ImmutableLongStackwith(long one)ImmutableLongStackwith(long... items)ImmutableLongStackwithAll(Iterable<Long> iterable)ImmutableLongStackwithAll(LongStream items)ImmutableLongStackwithAll(LongIterable items)ImmutableLongStackwithAllReversed(LongIterable items)
-
-
-
Method Detail
-
empty
ImmutableLongStack empty()
- Since:
- 6.0
-
of
ImmutableLongStack of()
Same asempty().
-
with
ImmutableLongStack with()
Same asempty().
-
of
ImmutableLongStack of(long one)
Same aswith(long).
-
with
ImmutableLongStack with(long one)
-
of
ImmutableLongStack of(long... items)
Same aswith(long[]).
-
with
ImmutableLongStack with(long... items)
-
ofAll
ImmutableLongStack ofAll(LongIterable items)
Same aswithAll(LongIterable).
-
withAll
ImmutableLongStack withAll(LongIterable items)
-
ofAll
ImmutableLongStack ofAll(Iterable<Long> iterable)
Same aswithAll(Iterable).
-
withAll
ImmutableLongStack withAll(Iterable<Long> iterable)
-
ofAllReversed
ImmutableLongStack ofAllReversed(LongIterable items)
Same aswithAllReversed(LongIterable).
-
withAllReversed
ImmutableLongStack withAllReversed(LongIterable items)
-
ofAll
ImmutableLongStack ofAll(LongStream items)
- Since:
- 9.0
-
withAll
ImmutableLongStack withAll(LongStream items)
- Since:
- 9.0
-
-