Class MutableFloatBagFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.bag.mutable.primitive.MutableFloatBagFactoryImpl
-
- All Implemented Interfaces:
MutableFloatBagFactory
public class MutableFloatBagFactoryImpl extends java.lang.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 MutableFloatBagFactory
INSTANCE
-
Constructor Summary
Constructors Constructor Description MutableFloatBagFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableFloatBag
empty()
MutableFloatBag
of()
Same asMutableFloatBagFactory.empty()
.MutableFloatBag
of(float... items)
Same asMutableFloatBagFactory.with(float[])
.MutableFloatBag
ofAll(java.lang.Iterable<java.lang.Float> iterable)
MutableFloatBag
ofAll(FloatIterable items)
MutableFloatBag
with()
Same asMutableFloatBagFactory.empty()
.MutableFloatBag
with(float... items)
MutableFloatBag
withAll(java.lang.Iterable<java.lang.Float> iterable)
MutableFloatBag
withAll(FloatIterable items)
-
-
-
Field Detail
-
INSTANCE
public static final MutableFloatBagFactory INSTANCE
-
-
Method Detail
-
empty
public MutableFloatBag empty()
- Specified by:
empty
in interfaceMutableFloatBagFactory
-
of
public MutableFloatBag of()
Description copied from interface:MutableFloatBagFactory
Same asMutableFloatBagFactory.empty()
.- Specified by:
of
in interfaceMutableFloatBagFactory
-
with
public MutableFloatBag with()
Description copied from interface:MutableFloatBagFactory
Same asMutableFloatBagFactory.empty()
.- Specified by:
with
in interfaceMutableFloatBagFactory
-
of
public MutableFloatBag of(float... items)
Description copied from interface:MutableFloatBagFactory
Same asMutableFloatBagFactory.with(float[])
.- Specified by:
of
in interfaceMutableFloatBagFactory
-
with
public MutableFloatBag with(float... items)
- Specified by:
with
in interfaceMutableFloatBagFactory
-
ofAll
public MutableFloatBag ofAll(FloatIterable items)
Description copied from interface:MutableFloatBagFactory
- Specified by:
ofAll
in interfaceMutableFloatBagFactory
-
withAll
public MutableFloatBag withAll(FloatIterable items)
- Specified by:
withAll
in interfaceMutableFloatBagFactory
-
ofAll
public MutableFloatBag ofAll(java.lang.Iterable<java.lang.Float> iterable)
Description copied from interface:MutableFloatBagFactory
- Specified by:
ofAll
in interfaceMutableFloatBagFactory
- Since:
- 10.0
-
withAll
public MutableFloatBag withAll(java.lang.Iterable<java.lang.Float> iterable)
- Specified by:
withAll
in interfaceMutableFloatBagFactory
- Since:
- 10.0
-
-