Interface ImmutableFloatListFactory
- All Known Implementing Classes:
ImmutableFloatListFactoryImpl
public interface ImmutableFloatListFactory
A factory which creates instances of type
ImmutableFloatList.
This file was automatically generated from template file immutablePrimitiveListFactory.stg.- Since:
- 3.2.
-
Method Summary
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 Details
-
empty
ImmutableFloatList empty()- Since:
- 6.0
-
of
ImmutableFloatList of()Same asempty(). -
with
ImmutableFloatList with()Same asempty(). -
of
Same aswith(float). -
with
-
of
Same aswith(float[]). -
with
-
ofAll
Same aswithAll(FloatIterable). -
withAll
-
ofAll
Same aswithAll(Iterable). -
withAll
-