Interface MutableDoubleSetFactory
-
- All Known Implementing Classes:
MutableDoubleSetFactoryImpl
public interface MutableDoubleSetFactory
A factory which creates instances of typeMutableDoubleSet
. 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 MutableDoubleSet
empty()
MutableDoubleSet
of()
Same asempty()
.MutableDoubleSet
of(double... items)
Same aswith(double[])
.MutableDoubleSet
ofAll(java.lang.Iterable<java.lang.Double> iterable)
Same aswithAll(Iterable)
.MutableDoubleSet
ofAll(java.util.stream.DoubleStream items)
MutableDoubleSet
ofAll(DoubleIterable items)
Same aswithAll(DoubleIterable)
.MutableDoubleSet
with()
Same asempty()
.MutableDoubleSet
with(double... items)
MutableDoubleSet
withAll(java.lang.Iterable<java.lang.Double> iterable)
MutableDoubleSet
withAll(java.util.stream.DoubleStream items)
MutableDoubleSet
withAll(DoubleIterable items)
default MutableDoubleSet
withInitialCapacity(int capacity)
Same asempty()
.
-
-
-
Method Detail
-
empty
MutableDoubleSet empty()
-
of
MutableDoubleSet of()
Same asempty()
.
-
with
MutableDoubleSet with()
Same asempty()
.
-
withInitialCapacity
default MutableDoubleSet withInitialCapacity(int capacity)
Same asempty()
. but takes in an initial capacity- Since:
- 10.3
-
of
MutableDoubleSet of(double... items)
Same aswith(double[])
.
-
with
MutableDoubleSet with(double... items)
-
ofAll
MutableDoubleSet ofAll(DoubleIterable items)
Same aswithAll(DoubleIterable)
.
-
withAll
MutableDoubleSet withAll(DoubleIterable items)
-
ofAll
MutableDoubleSet ofAll(java.lang.Iterable<java.lang.Double> iterable)
Same aswithAll(Iterable)
.
-
withAll
MutableDoubleSet withAll(java.lang.Iterable<java.lang.Double> iterable)
-
ofAll
MutableDoubleSet ofAll(java.util.stream.DoubleStream items)
- Since:
- 9.0
-
withAll
MutableDoubleSet withAll(java.util.stream.DoubleStream items)
- Since:
- 9.0
-
-