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