Interface MutableLongListFactory
- All Known Implementing Classes:
MutableLongListFactoryImpl
public interface MutableLongListFactory
A factory which creates instances of type
MutableLongList.
This file was automatically generated from template file mutablePrimitiveListFactory.stg.- Since:
- 6.0.
-
Method Summary
Modifier and Type Method Description MutableLongListempty()MutableLongListof()Same asempty().MutableLongListof(long... items)Same aswith(long[]).MutableLongListofAll(Iterable<Long> iterable)Same aswithAll(Iterable).MutableLongListofAll(LongStream items)MutableLongListofAll(LongIterable items)Same aswithAll(LongIterable).MutableLongListwith()Same asempty().MutableLongListwith(long... items)Creates a new list using the passeditemsargument as the backing store.MutableLongListwithAll(Iterable<Long> iterable)MutableLongListwithAll(LongStream items)MutableLongListwithAll(LongIterable items)default MutableLongListwithInitialCapacity(int capacity)Same asempty().default MutableLongListwrapCopy(long... array)Creates a new list by first copying the array passed in.
-
Method Details
-
empty
MutableLongList empty() -
of
MutableLongList of()Same asempty(). -
with
MutableLongList with()Same asempty(). -
withInitialCapacity
Same asempty(). but takes in an initial capacity- Since:
- 10.3
-
of
Same aswith(long[]). -
with
Creates a new list using the passeditemsargument as the backing store.!!! WARNING: This method uses the passed in array, so can be very unsafe if the original array is held onto anywhere else. !!!
-
wrapCopy
Creates a new list by first copying the array passed in. -
ofAll
Same aswithAll(LongIterable). -
withAll
-
ofAll
Same aswithAll(Iterable). -
withAll
-
ofAll
- Since:
- 9.0
-
withAll
- Since:
- 9.0
-