Interface MutableFloatBagFactory
-
- All Known Implementing Classes:
MutableFloatBagFactoryImpl
public interface MutableFloatBagFactory
A factory which creates instances of typeMutableFloatBag
. This file was automatically generated from template file mutablePrimitiveBagFactory.stg.- Since:
- 6.0.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MutableFloatBag
empty()
MutableFloatBag
of()
Same asempty()
.MutableFloatBag
of(float... items)
Same aswith(float[])
.MutableFloatBag
ofAll(java.lang.Iterable<java.lang.Float> iterable)
Same aswithAll(Iterable)
.MutableFloatBag
ofAll(FloatIterable items)
Same aswithAll(FloatIterable)
.MutableFloatBag
with()
Same asempty()
.MutableFloatBag
with(float... items)
MutableFloatBag
withAll(java.lang.Iterable<java.lang.Float> iterable)
MutableFloatBag
withAll(FloatIterable items)
-
-
-
Method Detail
-
empty
MutableFloatBag empty()
-
of
MutableFloatBag of()
Same asempty()
.
-
with
MutableFloatBag with()
Same asempty()
.
-
of
MutableFloatBag of(float... items)
Same aswith(float[])
.
-
with
MutableFloatBag with(float... items)
-
ofAll
MutableFloatBag ofAll(FloatIterable items)
Same aswithAll(FloatIterable)
.
-
withAll
MutableFloatBag withAll(FloatIterable items)
-
ofAll
MutableFloatBag ofAll(java.lang.Iterable<java.lang.Float> iterable)
Same aswithAll(Iterable)
.
-
withAll
MutableFloatBag withAll(java.lang.Iterable<java.lang.Float> iterable)
-
-