Class MutableDoubleBagFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.bag.mutable.primitive.MutableDoubleBagFactoryImpl
-
- All Implemented Interfaces:
MutableDoubleBagFactory
public class MutableDoubleBagFactoryImpl extends java.lang.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()Same asMutableDoubleBagFactory.empty().MutableDoubleBagof(double... items)MutableDoubleBagofAll(java.lang.Iterable<java.lang.Double> iterable)MutableDoubleBagofAll(java.util.stream.DoubleStream items)MutableDoubleBagofAll(DoubleIterable items)MutableDoubleBagwith()Same asMutableDoubleBagFactory.empty().MutableDoubleBagwith(double... items)MutableDoubleBagwithAll(java.lang.Iterable<java.lang.Double> iterable)MutableDoubleBagwithAll(java.util.stream.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()
Description copied from interface:MutableDoubleBagFactorySame asMutableDoubleBagFactory.empty().- Specified by:
ofin interfaceMutableDoubleBagFactory
-
with
public MutableDoubleBag with()
Description copied from interface:MutableDoubleBagFactorySame asMutableDoubleBagFactory.empty().- Specified by:
within interfaceMutableDoubleBagFactory
-
of
public MutableDoubleBag of(double... items)
Description copied from interface:MutableDoubleBagFactory- Specified by:
ofin interfaceMutableDoubleBagFactory
-
with
public MutableDoubleBag with(double... items)
- Specified by:
within interfaceMutableDoubleBagFactory
-
ofAll
public MutableDoubleBag ofAll(DoubleIterable items)
Description copied from interface:MutableDoubleBagFactory- Specified by:
ofAllin interfaceMutableDoubleBagFactory
-
withAll
public MutableDoubleBag withAll(DoubleIterable items)
- Specified by:
withAllin interfaceMutableDoubleBagFactory
-
ofAll
public MutableDoubleBag ofAll(java.lang.Iterable<java.lang.Double> iterable)
Description copied from interface:MutableDoubleBagFactory- Specified by:
ofAllin interfaceMutableDoubleBagFactory- Since:
- 10.0
-
withAll
public MutableDoubleBag withAll(java.lang.Iterable<java.lang.Double> iterable)
- Specified by:
withAllin interfaceMutableDoubleBagFactory- Since:
- 10.0
-
ofAll
public MutableDoubleBag ofAll(java.util.stream.DoubleStream items)
- Specified by:
ofAllin interfaceMutableDoubleBagFactory- Since:
- 9.0
-
withAll
public MutableDoubleBag withAll(java.util.stream.DoubleStream items)
- Specified by:
withAllin interfaceMutableDoubleBagFactory- Since:
- 9.0
-
-