Interface MutableFloatBagFactory
-
- All Known Implementing Classes:
MutableFloatBagFactoryImpl
public interface MutableFloatBagFactoryA 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 MutableFloatBagempty()MutableFloatBagof()Same asempty().MutableFloatBagof(float... items)Same aswith(float[]).MutableFloatBagofAll(java.lang.Iterable<java.lang.Float> iterable)Same aswithAll(Iterable).MutableFloatBagofAll(FloatIterable items)Same aswithAll(FloatIterable).MutableFloatBagwith()Same asempty().MutableFloatBagwith(float... items)MutableFloatBagwithAll(java.lang.Iterable<java.lang.Float> iterable)MutableFloatBagwithAll(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)
-
-