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