Interface MutableFloatBagFactory
-
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(Iterable<Float> iterable)Same aswithAll(Iterable).MutableFloatBagofAll(FloatIterable items)Same aswithAll(FloatIterable).MutableFloatBagwith()Same asempty().MutableFloatBagwith(float... items)MutableFloatBagwithAll(Iterable<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(Iterable<Float> iterable)
Same aswithAll(Iterable).
-
withAll
MutableFloatBag withAll(Iterable<Float> iterable)
-
-