Interface MutableLongSetFactory
-
- All Known Implementing Classes:
MutableLongSetFactoryImpl
public interface MutableLongSetFactory
A 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 MutableLongSet
empty()
MutableLongSet
of()
Same asempty()
.MutableLongSet
of(long... items)
Same aswith(long[])
.MutableLongSet
ofAll(java.lang.Iterable<java.lang.Long> iterable)
Same aswithAll(Iterable)
.MutableLongSet
ofAll(java.util.stream.LongStream items)
MutableLongSet
ofAll(LongIterable items)
Same aswithAll(LongIterable)
.MutableLongSet
with()
Same asempty()
.MutableLongSet
with(long... items)
MutableLongSet
withAll(java.lang.Iterable<java.lang.Long> iterable)
MutableLongSet
withAll(java.util.stream.LongStream items)
MutableLongSet
withAll(LongIterable items)
default MutableLongSet
withInitialCapacity(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(java.lang.Iterable<java.lang.Long> iterable)
Same aswithAll(Iterable)
.
-
withAll
MutableLongSet withAll(java.lang.Iterable<java.lang.Long> iterable)
-
ofAll
MutableLongSet ofAll(java.util.stream.LongStream items)
- Since:
- 9.0
-
withAll
MutableLongSet withAll(java.util.stream.LongStream items)
- Since:
- 9.0
-
-