Interface MutableDoubleBagFactory
-
- All Known Implementing Classes:
MutableDoubleBagFactoryImpl
public interface MutableDoubleBagFactoryA 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 MutableDoubleBagempty()MutableDoubleBagof()Same asempty().MutableDoubleBagof(double... items)Same aswith(double[]).MutableDoubleBagofAll(java.lang.Iterable<java.lang.Double> iterable)Same aswithAll(Iterable).MutableDoubleBagofAll(java.util.stream.DoubleStream items)MutableDoubleBagofAll(DoubleIterable items)Same aswithAll(DoubleIterable).MutableDoubleBagwith()Same asempty().MutableDoubleBagwith(double... items)MutableDoubleBagwithAll(java.lang.Iterable<java.lang.Double> iterable)MutableDoubleBagwithAll(java.util.stream.DoubleStream items)MutableDoubleBagwithAll(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
-
-