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