Interface ImmutableLongListFactory
- All Known Implementing Classes:
ImmutableLongListFactoryImpl
public interface ImmutableLongListFactory
A factory which creates instances of type
ImmutableLongList.
This file was automatically generated from template file immutablePrimitiveListFactory.stg.- Since:
- 3.2.
-
Method Summary
Modifier and Type Method Description ImmutableLongListempty()ImmutableLongListof()Same asempty().ImmutableLongListof(long one)Same aswith(long).ImmutableLongListof(long... items)Same aswith(long[]).ImmutableLongListofAll(Iterable<Long> iterable)Same aswithAll(Iterable).ImmutableLongListofAll(LongStream items)ImmutableLongListofAll(LongIterable items)Same aswithAll(LongIterable).ImmutableLongListwith()Same asempty().ImmutableLongListwith(long one)ImmutableLongListwith(long... items)ImmutableLongListwithAll(Iterable<Long> iterable)ImmutableLongListwithAll(LongStream items)ImmutableLongListwithAll(LongIterable items)
-
Method Details
-
empty
ImmutableLongList empty()- Since:
- 6.0
-
of
ImmutableLongList of()Same asempty(). -
with
ImmutableLongList with()Same asempty(). -
of
Same aswith(long). -
with
-
of
Same aswith(long[]). -
with
-
ofAll
Same aswithAll(LongIterable). -
withAll
-
ofAll
Same aswithAll(Iterable). -
withAll
-
ofAll
- Since:
- 9.0
-
withAll
- Since:
- 9.0
-