Interface ImmutableLongStackFactory
-
- All Known Implementing Classes:
ImmutableLongStackFactoryImpl
public interface ImmutableLongStackFactory
A 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 ImmutableLongStack
empty()
ImmutableLongStack
of()
Same asempty()
.ImmutableLongStack
of(long one)
Same aswith(long)
.ImmutableLongStack
of(long... items)
Same aswith(long[])
.ImmutableLongStack
ofAll(java.lang.Iterable<java.lang.Long> iterable)
Same aswithAll(Iterable)
.ImmutableLongStack
ofAll(java.util.stream.LongStream items)
ImmutableLongStack
ofAll(LongIterable items)
Same aswithAll(LongIterable)
.ImmutableLongStack
ofAllReversed(LongIterable items)
Same aswithAllReversed(LongIterable)
.ImmutableLongStack
with()
Same asempty()
.ImmutableLongStack
with(long one)
ImmutableLongStack
with(long... items)
ImmutableLongStack
withAll(java.lang.Iterable<java.lang.Long> iterable)
ImmutableLongStack
withAll(java.util.stream.LongStream items)
ImmutableLongStack
withAll(LongIterable items)
ImmutableLongStack
withAllReversed(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(java.lang.Iterable<java.lang.Long> iterable)
Same aswithAll(Iterable)
.
-
withAll
ImmutableLongStack withAll(java.lang.Iterable<java.lang.Long> iterable)
-
ofAllReversed
ImmutableLongStack ofAllReversed(LongIterable items)
Same aswithAllReversed(LongIterable)
.
-
withAllReversed
ImmutableLongStack withAllReversed(LongIterable items)
-
ofAll
ImmutableLongStack ofAll(java.util.stream.LongStream items)
- Since:
- 9.0
-
withAll
ImmutableLongStack withAll(java.util.stream.LongStream items)
- Since:
- 9.0
-
-