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