Interface MutableLongSetFactory
-
public interface MutableLongSetFactoryA factory which creates instances of typeMutableLongSet. This file was automatically generated from template file mutablePrimitiveSetFactory.stg.- Since:
- 6.0.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods 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 Detail
-
empty
MutableLongSet empty()
-
of
MutableLongSet of()
Same asempty().
-
with
MutableLongSet with()
Same asempty().
-
withInitialCapacity
default MutableLongSet withInitialCapacity(int capacity)
Same asempty(). but takes in an initial capacity- Since:
- 10.3
-
of
MutableLongSet of(long... items)
Same aswith(long[]).
-
with
MutableLongSet with(long... items)
-
ofAll
MutableLongSet ofAll(LongIterable items)
Same aswithAll(LongIterable).
-
withAll
MutableLongSet withAll(LongIterable items)
-
ofAll
MutableLongSet ofAll(Iterable<Long> iterable)
Same aswithAll(Iterable).
-
withAll
MutableLongSet withAll(Iterable<Long> iterable)
-
ofAll
MutableLongSet ofAll(LongStream items)
- Since:
- 9.0
-
withAll
MutableLongSet withAll(LongStream items)
- Since:
- 9.0
-
-