Class ImmutableFloatListFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.list.immutable.primitive.ImmutableFloatListFactoryImpl
-
- All Implemented Interfaces:
ImmutableFloatListFactory
public class ImmutableFloatListFactoryImpl extends Object implements ImmutableFloatListFactory
ImmutableFloatListFactoryImpl is a factory implementation which creates instances of typeImmutableFloatList. This file was automatically generated from template file immutablePrimitiveListFactoryImpl.stg.- Since:
- 3.2.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableFloatListFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableFloatListFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableFloatListempty()ImmutableFloatListof()ImmutableFloatListof(float one)ImmutableFloatListof(float... items)ImmutableFloatListofAll(Iterable<Float> iterable)ImmutableFloatListofAll(FloatIterable items)ImmutableFloatListwith()ImmutableFloatListwith(float one)ImmutableFloatListwith(float... items)ImmutableFloatListwithAll(Iterable<Float> iterable)ImmutableFloatListwithAll(FloatIterable items)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableFloatListFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableFloatList empty()
- Specified by:
emptyin interfaceImmutableFloatListFactory
-
of
public ImmutableFloatList of()
- Specified by:
ofin interfaceImmutableFloatListFactory
-
with
public ImmutableFloatList with()
- Specified by:
within interfaceImmutableFloatListFactory
-
of
public ImmutableFloatList of(float one)
- Specified by:
ofin interfaceImmutableFloatListFactory
-
with
public ImmutableFloatList with(float one)
- Specified by:
within interfaceImmutableFloatListFactory
-
of
public ImmutableFloatList of(float... items)
- Specified by:
ofin interfaceImmutableFloatListFactory
-
with
public ImmutableFloatList with(float... items)
- Specified by:
within interfaceImmutableFloatListFactory
-
ofAll
public ImmutableFloatList ofAll(FloatIterable items)
- Specified by:
ofAllin interfaceImmutableFloatListFactory
-
withAll
public ImmutableFloatList withAll(FloatIterable items)
- Specified by:
withAllin interfaceImmutableFloatListFactory
-
ofAll
public ImmutableFloatList ofAll(Iterable<Float> iterable)
- Specified by:
ofAllin interfaceImmutableFloatListFactory- Since:
- 10.0
-
withAll
public ImmutableFloatList withAll(Iterable<Float> iterable)
- Specified by:
withAllin interfaceImmutableFloatListFactory- Since:
- 10.0
-
-