Interface ImmutableFloatBagFactory
-
public interface ImmutableFloatBagFactoryA factory which creates instances of typeImmutableFloatBag. This file was automatically generated from template file immutablePrimitiveBagFactory.stg.- Since:
- 4.0.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ImmutableFloatBagempty()ImmutableFloatBagof()Same asempty().ImmutableFloatBagof(float one)Same aswith(float).ImmutableFloatBagof(float... items)Same aswith(float[]).ImmutableFloatBagofAll(Iterable<Float> iterable)Same aswithAll(Iterable).ImmutableFloatBagofAll(FloatIterable items)Same aswithAll(FloatIterable).ImmutableFloatBagwith()Same asempty().ImmutableFloatBagwith(float one)ImmutableFloatBagwith(float... items)ImmutableFloatBagwithAll(Iterable<Float> iterable)ImmutableFloatBagwithAll(FloatIterable items)
-
-
-
Method Detail
-
empty
ImmutableFloatBag empty()
- Since:
- 6.0
-
of
ImmutableFloatBag of()
Same asempty().
-
with
ImmutableFloatBag with()
Same asempty().
-
of
ImmutableFloatBag of(float one)
Same aswith(float).
-
with
ImmutableFloatBag with(float one)
-
of
ImmutableFloatBag of(float... items)
Same aswith(float[]).
-
with
ImmutableFloatBag with(float... items)
-
ofAll
ImmutableFloatBag ofAll(FloatIterable items)
Same aswithAll(FloatIterable).
-
withAll
ImmutableFloatBag withAll(FloatIterable items)
-
ofAll
ImmutableFloatBag ofAll(Iterable<Float> iterable)
Same aswithAll(Iterable).
-
withAll
ImmutableFloatBag withAll(Iterable<Float> iterable)
-
-