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 MutableFloatBagFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description MutableFloatBagFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableFloatBagempty()MutableFloatBagof()Same asMutableFloatBagFactory.empty().MutableFloatBagof(float... items)Same asMutableFloatBagFactory.with(float[]).MutableFloatBagofAll(java.lang.Iterable<java.lang.Float> iterable)MutableFloatBagofAll(FloatIterable items)MutableFloatBagwith()Same asMutableFloatBagFactory.empty().MutableFloatBagwith(float... items)MutableFloatBagwithAll(java.lang.Iterable<java.lang.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()
Description copied from interface:MutableFloatBagFactorySame asMutableFloatBagFactory.empty().- Specified by:
ofin interfaceMutableFloatBagFactory
-
with
public MutableFloatBag with()
Description copied from interface:MutableFloatBagFactorySame asMutableFloatBagFactory.empty().- Specified by:
within interfaceMutableFloatBagFactory
-
of
public MutableFloatBag of(float... items)
Description copied from interface:MutableFloatBagFactorySame asMutableFloatBagFactory.with(float[]).- Specified by:
ofin interfaceMutableFloatBagFactory
-
with
public MutableFloatBag with(float... items)
- Specified by:
within interfaceMutableFloatBagFactory
-
ofAll
public MutableFloatBag ofAll(FloatIterable items)
Description copied from interface:MutableFloatBagFactory- Specified by:
ofAllin interfaceMutableFloatBagFactory
-
withAll
public MutableFloatBag withAll(FloatIterable items)
- Specified by:
withAllin interfaceMutableFloatBagFactory
-
ofAll
public MutableFloatBag ofAll(java.lang.Iterable<java.lang.Float> iterable)
Description copied from interface:MutableFloatBagFactory- Specified by:
ofAllin interfaceMutableFloatBagFactory- Since:
- 10.0
-
withAll
public MutableFloatBag withAll(java.lang.Iterable<java.lang.Float> iterable)
- Specified by:
withAllin interfaceMutableFloatBagFactory- Since:
- 10.0
-
-