Class MutableFloatBagFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.bag.mutable.primitive.MutableFloatBagFactoryImpl
-
- All Implemented Interfaces:
MutableFloatBagFactory
public class MutableFloatBagFactoryImpl extends Object implements MutableFloatBagFactory
MutableFloatBagFactoryImpl is a factory implementation which creates instances of typeMutableFloatBag. This file was automatically generated from template file mutablePrimitiveBagFactoryImpl.stg.- Since:
- 6.0.
-
-
Field Summary
Fields Modifier and Type Field Description static MutableFloatBagFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description MutableFloatBagFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableFloatBagempty()MutableFloatBagof()MutableFloatBagof(float... items)MutableFloatBagofAll(Iterable<Float> iterable)MutableFloatBagofAll(FloatIterable items)MutableFloatBagwith()MutableFloatBagwith(float... items)MutableFloatBagwithAll(Iterable<Float> iterable)MutableFloatBagwithAll(FloatIterable items)
-
-
-
Field Detail
-
INSTANCE
public static final MutableFloatBagFactory INSTANCE
-
-
Method Detail
-
empty
public MutableFloatBag empty()
- Specified by:
emptyin interfaceMutableFloatBagFactory
-
of
public MutableFloatBag of()
- Specified by:
ofin interfaceMutableFloatBagFactory
-
with
public MutableFloatBag with()
- Specified by:
within interfaceMutableFloatBagFactory
-
of
public MutableFloatBag of(float... items)
- Specified by:
ofin interfaceMutableFloatBagFactory
-
with
public MutableFloatBag with(float... items)
- Specified by:
within interfaceMutableFloatBagFactory
-
ofAll
public MutableFloatBag ofAll(FloatIterable items)
- Specified by:
ofAllin interfaceMutableFloatBagFactory
-
withAll
public MutableFloatBag withAll(FloatIterable items)
- Specified by:
withAllin interfaceMutableFloatBagFactory
-
ofAll
public MutableFloatBag ofAll(Iterable<Float> iterable)
- Specified by:
ofAllin interfaceMutableFloatBagFactory- Since:
- 10.0
-
withAll
public MutableFloatBag withAll(Iterable<Float> iterable)
- Specified by:
withAllin interfaceMutableFloatBagFactory- Since:
- 10.0
-
-