Interface MutableLongSetFactory
- All Known Implementing Classes:
MutableLongSetFactoryImpl
public interface MutableLongSetFactory
A factory which creates instances of type
MutableLongSet.
This file was automatically generated from template file mutablePrimitiveSetFactory.stg.- Since:
- 6.0.
-
Method Summary
Modifier and Type Method Description MutableLongSetempty()MutableLongSetof()Same asempty().MutableLongSetof(long... items)Same aswith(long[]).MutableLongSetofAll(Iterable<Long> iterable)Same aswithAll(Iterable).MutableLongSetofAll(LongStream items)MutableLongSetofAll(LongIterable items)Same aswithAll(LongIterable).MutableLongSetwith()Same asempty().MutableLongSetwith(long... items)MutableLongSetwithAll(Iterable<Long> iterable)MutableLongSetwithAll(LongStream items)MutableLongSetwithAll(LongIterable items)default MutableLongSetwithInitialCapacity(int capacity)Same asempty().
-
Method Details
-
empty
MutableLongSet empty() -
of
MutableLongSet of()Same asempty(). -
with
MutableLongSet with()Same asempty(). -
withInitialCapacity
Same asempty(). but takes in an initial capacity- Since:
- 10.3
-
of
Same aswith(long[]). -
with
-
ofAll
Same aswithAll(LongIterable). -
withAll
-
ofAll
Same aswithAll(Iterable). -
withAll
-
ofAll
- Since:
- 9.0
-
withAll
- Since:
- 9.0
-