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