Class ImmutableFloatBagFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.bag.immutable.primitive.ImmutableFloatBagFactoryImpl
-
- All Implemented Interfaces:
ImmutableFloatBagFactory
public class ImmutableFloatBagFactoryImpl extends java.lang.Object implements ImmutableFloatBagFactory
ImmutableFloatBagFactoryImpl is a factory implementation which creates instances of typeImmutableFloatBag
. This file was automatically generated from template file immutablePrimitiveBagFactoryImpl.stg.- Since:
- 4.0.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableFloatBagFactory
INSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableFloatBagFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableFloatBag
empty()
ImmutableFloatBag
of()
Same asImmutableFloatBagFactory.empty()
.ImmutableFloatBag
of(float one)
Same asImmutableFloatBagFactory.with(float)
.ImmutableFloatBag
of(float... items)
ImmutableFloatBag
ofAll(java.lang.Iterable<java.lang.Float> iterable)
ImmutableFloatBag
ofAll(FloatIterable items)
ImmutableFloatBag
with()
Same asImmutableFloatBagFactory.empty()
.ImmutableFloatBag
with(float one)
ImmutableFloatBag
with(float... items)
ImmutableFloatBag
withAll(java.lang.Iterable<java.lang.Float> iterable)
ImmutableFloatBag
withAll(FloatIterable items)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableFloatBagFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableFloatBag empty()
- Specified by:
empty
in interfaceImmutableFloatBagFactory
-
of
public ImmutableFloatBag of()
Description copied from interface:ImmutableFloatBagFactory
Same asImmutableFloatBagFactory.empty()
.- Specified by:
of
in interfaceImmutableFloatBagFactory
-
with
public ImmutableFloatBag with()
Description copied from interface:ImmutableFloatBagFactory
Same asImmutableFloatBagFactory.empty()
.- Specified by:
with
in interfaceImmutableFloatBagFactory
-
of
public ImmutableFloatBag of(float one)
Description copied from interface:ImmutableFloatBagFactory
Same asImmutableFloatBagFactory.with(float)
.- Specified by:
of
in interfaceImmutableFloatBagFactory
-
with
public ImmutableFloatBag with(float one)
- Specified by:
with
in interfaceImmutableFloatBagFactory
-
of
public ImmutableFloatBag of(float... items)
Description copied from interface:ImmutableFloatBagFactory
- Specified by:
of
in interfaceImmutableFloatBagFactory
-
with
public ImmutableFloatBag with(float... items)
- Specified by:
with
in interfaceImmutableFloatBagFactory
-
ofAll
public ImmutableFloatBag ofAll(FloatIterable items)
Description copied from interface:ImmutableFloatBagFactory
- Specified by:
ofAll
in interfaceImmutableFloatBagFactory
-
withAll
public ImmutableFloatBag withAll(FloatIterable items)
- Specified by:
withAll
in interfaceImmutableFloatBagFactory
-
ofAll
public ImmutableFloatBag ofAll(java.lang.Iterable<java.lang.Float> iterable)
Description copied from interface:ImmutableFloatBagFactory
- Specified by:
ofAll
in interfaceImmutableFloatBagFactory
- Since:
- 10.0
-
withAll
public ImmutableFloatBag withAll(java.lang.Iterable<java.lang.Float> iterable)
- Specified by:
withAll
in interfaceImmutableFloatBagFactory
- Since:
- 10.0
-
-