Interface ImmutableFloatBagFactory
-
- All Known Implementing Classes:
ImmutableFloatBagFactoryImpl
public interface ImmutableFloatBagFactory
A 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 ImmutableFloatBag
empty()
ImmutableFloatBag
of()
Same asempty()
.ImmutableFloatBag
of(float one)
Same aswith(float)
.ImmutableFloatBag
of(float... items)
Same aswith(float[])
.ImmutableFloatBag
ofAll(java.lang.Iterable<java.lang.Float> iterable)
Same aswithAll(Iterable)
.ImmutableFloatBag
ofAll(FloatIterable items)
Same aswithAll(FloatIterable)
.ImmutableFloatBag
with()
Same asempty()
.ImmutableFloatBag
with(float one)
ImmutableFloatBag
with(float... items)
ImmutableFloatBag
withAll(java.lang.Iterable<java.lang.Float> iterable)
ImmutableFloatBag
withAll(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(java.lang.Iterable<java.lang.Float> iterable)
Same aswithAll(Iterable)
.
-
withAll
ImmutableFloatBag withAll(java.lang.Iterable<java.lang.Float> iterable)
-
-