Class ImmutableFloatBagFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.bag.immutable.primitive.ImmutableFloatBagFactoryImpl
-
- All Implemented Interfaces:
ImmutableFloatBagFactory
public class ImmutableFloatBagFactoryImpl extends 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 ImmutableFloatBagFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableFloatBagFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableFloatBagempty()ImmutableFloatBagof()ImmutableFloatBagof(float one)ImmutableFloatBagof(float... items)ImmutableFloatBagofAll(Iterable<Float> iterable)ImmutableFloatBagofAll(FloatIterable items)ImmutableFloatBagwith()ImmutableFloatBagwith(float one)ImmutableFloatBagwith(float... items)ImmutableFloatBagwithAll(Iterable<Float> iterable)ImmutableFloatBagwithAll(FloatIterable items)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableFloatBagFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableFloatBag empty()
- Specified by:
emptyin interfaceImmutableFloatBagFactory
-
of
public ImmutableFloatBag of()
- Specified by:
ofin interfaceImmutableFloatBagFactory
-
with
public ImmutableFloatBag with()
- Specified by:
within interfaceImmutableFloatBagFactory
-
of
public ImmutableFloatBag of(float one)
- Specified by:
ofin interfaceImmutableFloatBagFactory
-
with
public ImmutableFloatBag with(float one)
- Specified by:
within interfaceImmutableFloatBagFactory
-
of
public ImmutableFloatBag of(float... items)
- Specified by:
ofin interfaceImmutableFloatBagFactory
-
with
public ImmutableFloatBag with(float... items)
- Specified by:
within interfaceImmutableFloatBagFactory
-
ofAll
public ImmutableFloatBag ofAll(FloatIterable items)
- Specified by:
ofAllin interfaceImmutableFloatBagFactory
-
withAll
public ImmutableFloatBag withAll(FloatIterable items)
- Specified by:
withAllin interfaceImmutableFloatBagFactory
-
ofAll
public ImmutableFloatBag ofAll(Iterable<Float> iterable)
- Specified by:
ofAllin interfaceImmutableFloatBagFactory- Since:
- 10.0
-
withAll
public ImmutableFloatBag withAll(Iterable<Float> iterable)
- Specified by:
withAllin interfaceImmutableFloatBagFactory- Since:
- 10.0
-
-