Interface ImmutableLongListFactory
-
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(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 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(Iterable<Long> iterable)
Same aswithAll(Iterable).
-
withAll
ImmutableLongList withAll(Iterable<Long> iterable)
-
ofAll
ImmutableLongList ofAll(LongStream items)
- Since:
- 9.0
-
withAll
ImmutableLongList withAll(LongStream items)
- Since:
- 9.0
-
-