Interface ImmutableDoubleListFactory
- All Known Implementing Classes:
ImmutableDoubleListFactoryImpl
public interface ImmutableDoubleListFactory
A factory which creates instances of type
ImmutableDoubleList.
This file was automatically generated from template file immutablePrimitiveListFactory.stg.- Since:
- 3.2.
-
Method Summary
Modifier and Type Method Description ImmutableDoubleListempty()ImmutableDoubleListof()Same asempty().ImmutableDoubleListof(double one)Same aswith(double).ImmutableDoubleListof(double... items)Same aswith(double[]).ImmutableDoubleListofAll(Iterable<Double> iterable)Same aswithAll(Iterable).ImmutableDoubleListofAll(DoubleStream items)ImmutableDoubleListofAll(DoubleIterable items)Same aswithAll(DoubleIterable).ImmutableDoubleListwith()Same asempty().ImmutableDoubleListwith(double one)ImmutableDoubleListwith(double... items)ImmutableDoubleListwithAll(Iterable<Double> iterable)ImmutableDoubleListwithAll(DoubleStream items)ImmutableDoubleListwithAll(DoubleIterable items)
-
Method Details
-
empty
ImmutableDoubleList empty()- Since:
- 6.0
-
of
ImmutableDoubleList of()Same asempty(). -
with
ImmutableDoubleList 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
-