Interface ImmutableFloatListFactory
-
public interface ImmutableFloatListFactoryA 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 ImmutableFloatListempty()ImmutableFloatListof()Same asempty().ImmutableFloatListof(float one)Same aswith(float).ImmutableFloatListof(float... items)Same aswith(float[]).ImmutableFloatListofAll(Iterable<Float> iterable)Same aswithAll(Iterable).ImmutableFloatListofAll(FloatIterable items)Same aswithAll(FloatIterable).ImmutableFloatListwith()Same asempty().ImmutableFloatListwith(float one)ImmutableFloatListwith(float... items)ImmutableFloatListwithAll(Iterable<Float> iterable)ImmutableFloatListwithAll(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(Iterable<Float> iterable)
Same aswithAll(Iterable).
-
withAll
ImmutableFloatList withAll(Iterable<Float> iterable)
-
-