Interface ImmutableLongListFactory
-
- All Known Implementing Classes:
ImmutableLongListFactoryImpl
public interface ImmutableLongListFactory
A factory which creates instances of typeImmutableLongList
. This file was automatically generated from template file immutablePrimitiveListFactory.stg.- Since:
- 3.2.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ImmutableLongList
empty()
ImmutableLongList
of()
Same asempty()
.ImmutableLongList
of(long one)
Same aswith(long)
.ImmutableLongList
of(long... items)
Same aswith(long[])
.ImmutableLongList
ofAll(java.lang.Iterable<java.lang.Long> iterable)
Same aswithAll(Iterable)
.ImmutableLongList
ofAll(java.util.stream.LongStream items)
ImmutableLongList
ofAll(LongIterable items)
Same aswithAll(LongIterable)
.ImmutableLongList
with()
Same asempty()
.ImmutableLongList
with(long one)
ImmutableLongList
with(long... items)
ImmutableLongList
withAll(java.lang.Iterable<java.lang.Long> iterable)
ImmutableLongList
withAll(java.util.stream.LongStream items)
ImmutableLongList
withAll(LongIterable items)
-
-
-
Method Detail
-
empty
ImmutableLongList empty()
- Since:
- 6.0
-
of
ImmutableLongList of()
Same asempty()
.
-
with
ImmutableLongList with()
Same asempty()
.
-
of
ImmutableLongList of(long one)
Same aswith(long)
.
-
with
ImmutableLongList with(long one)
-
of
ImmutableLongList of(long... items)
Same aswith(long[])
.
-
with
ImmutableLongList with(long... items)
-
ofAll
ImmutableLongList ofAll(LongIterable items)
Same aswithAll(LongIterable)
.
-
withAll
ImmutableLongList withAll(LongIterable items)
-
ofAll
ImmutableLongList ofAll(java.lang.Iterable<java.lang.Long> iterable)
Same aswithAll(Iterable)
.
-
withAll
ImmutableLongList withAll(java.lang.Iterable<java.lang.Long> iterable)
-
ofAll
ImmutableLongList ofAll(java.util.stream.LongStream items)
- Since:
- 9.0
-
withAll
ImmutableLongList withAll(java.util.stream.LongStream items)
- Since:
- 9.0
-
-