Interface ImmutableLongListFactory
-
- All Known Implementing Classes:
ImmutableLongListFactoryImpl
public interface ImmutableLongListFactoryA 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 ImmutableLongListempty()ImmutableLongListof()Same asempty().ImmutableLongListof(long one)Same aswith(long).ImmutableLongListof(long... items)Same aswith(long[]).ImmutableLongListofAll(java.lang.Iterable<java.lang.Long> iterable)Same aswithAll(Iterable).ImmutableLongListofAll(java.util.stream.LongStream items)ImmutableLongListofAll(LongIterable items)Same aswithAll(LongIterable).ImmutableLongListwith()Same asempty().ImmutableLongListwith(long one)ImmutableLongListwith(long... items)ImmutableLongListwithAll(java.lang.Iterable<java.lang.Long> iterable)ImmutableLongListwithAll(java.util.stream.LongStream items)ImmutableLongListwithAll(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
-
-