Interface ImmutableDoubleSetFactory
-
- All Known Implementing Classes:
ImmutableDoubleSetFactoryImpl
public interface ImmutableDoubleSetFactory
A factory which creates instances of typeImmutableDoubleSet
. This file was automatically generated from template file immutablePrimitiveSetFactory.stg.- Since:
- 4.0.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ImmutableDoubleSet
empty()
ImmutableDoubleSet
of()
Same asempty()
.ImmutableDoubleSet
of(double one)
Same aswith(double)
.ImmutableDoubleSet
of(double... items)
Same aswith(double[])
.ImmutableDoubleSet
ofAll(java.lang.Iterable<java.lang.Double> iterable)
Same aswithAll(Iterable)
.ImmutableDoubleSet
ofAll(java.util.stream.DoubleStream items)
ImmutableDoubleSet
ofAll(DoubleIterable items)
Same aswithAll(DoubleIterable)
.ImmutableDoubleSet
with()
Same asempty()
.ImmutableDoubleSet
with(double one)
ImmutableDoubleSet
with(double... items)
ImmutableDoubleSet
withAll(java.lang.Iterable<java.lang.Double> iterable)
ImmutableDoubleSet
withAll(java.util.stream.DoubleStream items)
ImmutableDoubleSet
withAll(DoubleIterable items)
-
-
-
Method Detail
-
empty
ImmutableDoubleSet empty()
- Since:
- 6.0
-
of
ImmutableDoubleSet of()
Same asempty()
.
-
with
ImmutableDoubleSet with()
Same asempty()
.
-
of
ImmutableDoubleSet of(double one)
Same aswith(double)
.
-
with
ImmutableDoubleSet with(double one)
-
of
ImmutableDoubleSet of(double... items)
Same aswith(double[])
.
-
with
ImmutableDoubleSet with(double... items)
-
ofAll
ImmutableDoubleSet ofAll(DoubleIterable items)
Same aswithAll(DoubleIterable)
.
-
withAll
ImmutableDoubleSet withAll(DoubleIterable items)
-
ofAll
ImmutableDoubleSet ofAll(java.lang.Iterable<java.lang.Double> iterable)
Same aswithAll(Iterable)
.
-
withAll
ImmutableDoubleSet withAll(java.lang.Iterable<java.lang.Double> iterable)
-
ofAll
ImmutableDoubleSet ofAll(java.util.stream.DoubleStream items)
- Since:
- 9.0
-
withAll
ImmutableDoubleSet withAll(java.util.stream.DoubleStream items)
- Since:
- 9.0
-
-