Class MutableDoubleBagFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.bag.mutable.primitive.MutableDoubleBagFactoryImpl
-
- All Implemented Interfaces:
MutableDoubleBagFactory
public class MutableDoubleBagFactoryImpl extends Object implements MutableDoubleBagFactory
MutableDoubleBagFactoryImpl is a factory implementation which creates instances of typeMutableDoubleBag. This file was automatically generated from template file mutablePrimitiveBagFactoryImpl.stg.- Since:
- 6.0.
-
-
Field Summary
Fields Modifier and Type Field Description static MutableDoubleBagFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description MutableDoubleBagFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableDoubleBagempty()MutableDoubleBagof()MutableDoubleBagof(double... items)MutableDoubleBagofAll(Iterable<Double> iterable)MutableDoubleBagofAll(DoubleStream items)MutableDoubleBagofAll(DoubleIterable items)MutableDoubleBagwith()MutableDoubleBagwith(double... items)MutableDoubleBagwithAll(Iterable<Double> iterable)MutableDoubleBagwithAll(DoubleStream items)MutableDoubleBagwithAll(DoubleIterable items)
-
-
-
Field Detail
-
INSTANCE
public static final MutableDoubleBagFactory INSTANCE
-
-
Method Detail
-
empty
public MutableDoubleBag empty()
- Specified by:
emptyin interfaceMutableDoubleBagFactory
-
of
public MutableDoubleBag of()
- Specified by:
ofin interfaceMutableDoubleBagFactory
-
with
public MutableDoubleBag with()
- Specified by:
within interfaceMutableDoubleBagFactory
-
of
public MutableDoubleBag of(double... items)
- Specified by:
ofin interfaceMutableDoubleBagFactory
-
with
public MutableDoubleBag with(double... items)
- Specified by:
within interfaceMutableDoubleBagFactory
-
ofAll
public MutableDoubleBag ofAll(DoubleIterable items)
- Specified by:
ofAllin interfaceMutableDoubleBagFactory
-
withAll
public MutableDoubleBag withAll(DoubleIterable items)
- Specified by:
withAllin interfaceMutableDoubleBagFactory
-
ofAll
public MutableDoubleBag ofAll(Iterable<Double> iterable)
- Specified by:
ofAllin interfaceMutableDoubleBagFactory- Since:
- 10.0
-
withAll
public MutableDoubleBag withAll(Iterable<Double> iterable)
- Specified by:
withAllin interfaceMutableDoubleBagFactory- Since:
- 10.0
-
ofAll
public MutableDoubleBag ofAll(DoubleStream items)
- Specified by:
ofAllin interfaceMutableDoubleBagFactory- Since:
- 9.0
-
withAll
public MutableDoubleBag withAll(DoubleStream items)
- Specified by:
withAllin interfaceMutableDoubleBagFactory- Since:
- 9.0
-
-