Interface ImmutableDoubleSetFactory
-
public interface ImmutableDoubleSetFactoryA 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 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 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(Iterable<Double> iterable)
Same aswithAll(Iterable).
-
withAll
ImmutableDoubleSet withAll(Iterable<Double> iterable)
-
ofAll
ImmutableDoubleSet ofAll(DoubleStream items)
- Since:
- 9.0
-
withAll
ImmutableDoubleSet withAll(DoubleStream items)
- Since:
- 9.0
-
-