Interface ImmutableDoubleSetFactory
-
- All Known Implementing Classes:
ImmutableDoubleSetFactoryImpl
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(java.lang.Iterable<java.lang.Double> iterable)Same aswithAll(Iterable).ImmutableDoubleSetofAll(java.util.stream.DoubleStream items)ImmutableDoubleSetofAll(DoubleIterable items)Same aswithAll(DoubleIterable).ImmutableDoubleSetwith()Same asempty().ImmutableDoubleSetwith(double one)ImmutableDoubleSetwith(double... items)ImmutableDoubleSetwithAll(java.lang.Iterable<java.lang.Double> iterable)ImmutableDoubleSetwithAll(java.util.stream.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(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
-
-