Class ImmutableFloatListFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.list.immutable.primitive.ImmutableFloatListFactoryImpl
-
- All Implemented Interfaces:
ImmutableFloatListFactory
public class ImmutableFloatListFactoryImpl extends java.lang.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 ImmutableFloatListFactory
INSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableFloatListFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableFloatList
empty()
ImmutableFloatList
of()
Same asImmutableFloatListFactory.empty()
.ImmutableFloatList
of(float one)
ImmutableFloatList
of(float... items)
ImmutableFloatList
ofAll(java.lang.Iterable<java.lang.Float> iterable)
ImmutableFloatList
ofAll(FloatIterable items)
ImmutableFloatList
with()
Same asImmutableFloatListFactory.empty()
.ImmutableFloatList
with(float one)
ImmutableFloatList
with(float... items)
ImmutableFloatList
withAll(java.lang.Iterable<java.lang.Float> iterable)
ImmutableFloatList
withAll(FloatIterable items)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableFloatListFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableFloatList empty()
- Specified by:
empty
in interfaceImmutableFloatListFactory
-
of
public ImmutableFloatList of()
Description copied from interface:ImmutableFloatListFactory
Same asImmutableFloatListFactory.empty()
.- Specified by:
of
in interfaceImmutableFloatListFactory
-
with
public ImmutableFloatList with()
Description copied from interface:ImmutableFloatListFactory
Same asImmutableFloatListFactory.empty()
.- Specified by:
with
in interfaceImmutableFloatListFactory
-
of
public ImmutableFloatList of(float one)
Description copied from interface:ImmutableFloatListFactory
- Specified by:
of
in interfaceImmutableFloatListFactory
-
with
public ImmutableFloatList with(float one)
- Specified by:
with
in interfaceImmutableFloatListFactory
-
of
public ImmutableFloatList of(float... items)
Description copied from interface:ImmutableFloatListFactory
- Specified by:
of
in interfaceImmutableFloatListFactory
-
with
public ImmutableFloatList with(float... items)
- Specified by:
with
in interfaceImmutableFloatListFactory
-
ofAll
public ImmutableFloatList ofAll(FloatIterable items)
Description copied from interface:ImmutableFloatListFactory
- Specified by:
ofAll
in interfaceImmutableFloatListFactory
-
withAll
public ImmutableFloatList withAll(FloatIterable items)
- Specified by:
withAll
in interfaceImmutableFloatListFactory
-
ofAll
public ImmutableFloatList ofAll(java.lang.Iterable<java.lang.Float> iterable)
Description copied from interface:ImmutableFloatListFactory
- Specified by:
ofAll
in interfaceImmutableFloatListFactory
- Since:
- 10.0
-
withAll
public ImmutableFloatList withAll(java.lang.Iterable<java.lang.Float> iterable)
- Specified by:
withAll
in interfaceImmutableFloatListFactory
- Since:
- 10.0
-
-