Interface ImmutableDoubleSetFactory
- All Known Implementing Classes:
ImmutableDoubleSetFactoryImpl
public interface ImmutableDoubleSetFactory
A factory which creates instances of type
ImmutableDoubleSet.
This file was automatically generated from template file immutablePrimitiveSetFactory.stg.- Since:
- 4.0.
-
Method Summary
Modifier and Type Method Description ImmutableDoubleSetempty()ImmutableDoubleSetof()Same asempty().ImmutableDoubleSetof(double one)Same aswith(double).ImmutableDoubleSetof(double... items)Same aswith(double[]).ImmutableDoubleSetofAll(Iterable<Double> iterable)Same aswithAll(Iterable).ImmutableDoubleSetofAll(DoubleStream items)ImmutableDoubleSetofAll(DoubleIterable items)Same aswithAll(DoubleIterable).ImmutableDoubleSetwith()Same asempty().ImmutableDoubleSetwith(double one)ImmutableDoubleSetwith(double... items)ImmutableDoubleSetwithAll(Iterable<Double> iterable)ImmutableDoubleSetwithAll(DoubleStream items)ImmutableDoubleSetwithAll(DoubleIterable items)
-
Method Details
-
empty
ImmutableDoubleSet empty()- Since:
- 6.0
-
of
ImmutableDoubleSet of()Same asempty(). -
with
ImmutableDoubleSet with()Same asempty(). -
of
Same aswith(double). -
with
-
of
Same aswith(double[]). -
with
-
ofAll
Same aswithAll(DoubleIterable). -
withAll
-
ofAll
Same aswithAll(Iterable). -
withAll
-
ofAll
- Since:
- 9.0
-
withAll
- Since:
- 9.0
-