Interface ImmutableDoubleStackFactory
-
- All Known Implementing Classes:
ImmutableDoubleStackFactoryImpl
public interface ImmutableDoubleStackFactoryA factory which creates instances of typeImmutableDoubleStack. This file was automatically generated from template file immutablePrimitiveStackFactory.stg.- Since:
- 4.0.
-
-
Method Summary
-
-
-
Method Detail
-
empty
ImmutableDoubleStack empty()
- Since:
- 6.0
-
of
ImmutableDoubleStack of()
Same asempty().
-
with
ImmutableDoubleStack with()
Same asempty().
-
of
ImmutableDoubleStack of(double one)
Same aswith(double).
-
with
ImmutableDoubleStack with(double one)
-
of
ImmutableDoubleStack of(double... items)
Same aswith(double[]).
-
with
ImmutableDoubleStack with(double... items)
-
ofAll
ImmutableDoubleStack ofAll(DoubleIterable items)
Same aswithAll(DoubleIterable).
-
withAll
ImmutableDoubleStack withAll(DoubleIterable items)
-
ofAll
ImmutableDoubleStack ofAll(java.lang.Iterable<java.lang.Double> iterable)
Same aswithAll(Iterable).
-
withAll
ImmutableDoubleStack withAll(java.lang.Iterable<java.lang.Double> iterable)
-
ofAllReversed
ImmutableDoubleStack ofAllReversed(DoubleIterable items)
Same aswithAllReversed(DoubleIterable).
-
withAllReversed
ImmutableDoubleStack withAllReversed(DoubleIterable items)
-
ofAll
ImmutableDoubleStack ofAll(java.util.stream.DoubleStream items)
- Since:
- 9.0
-
withAll
ImmutableDoubleStack withAll(java.util.stream.DoubleStream items)
- Since:
- 9.0
-
-