Class MutableFloatSetFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.set.mutable.primitive.MutableFloatSetFactoryImpl
-
- All Implemented Interfaces:
MutableFloatSetFactory
public class MutableFloatSetFactoryImpl extends java.lang.Object implements MutableFloatSetFactory
MutableFloatSetFactoryImpl is a factory implementation which creates instances of typeMutableFloatSet
. This file was automatically generated from template file mutablePrimitiveSetFactoryImpl.stg.- Since:
- 6.0.
-
-
Field Summary
Fields Modifier and Type Field Description static MutableFloatSetFactory
INSTANCE
-
Constructor Summary
Constructors Constructor Description MutableFloatSetFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableFloatSet
empty()
MutableFloatSet
of()
Same asMutableFloatSetFactory.empty()
.MutableFloatSet
of(float... items)
Same asMutableFloatSetFactory.with(float[])
.MutableFloatSet
ofAll(java.lang.Iterable<java.lang.Float> iterable)
MutableFloatSet
ofAll(FloatIterable items)
MutableFloatSet
with()
Same asMutableFloatSetFactory.empty()
.MutableFloatSet
with(float... items)
MutableFloatSet
withAll(java.lang.Iterable<java.lang.Float> iterable)
MutableFloatSet
withAll(FloatIterable items)
MutableFloatSet
withInitialCapacity(int capacity)
Same asMutableFloatSetFactory.empty()
.
-
-
-
Field Detail
-
INSTANCE
public static final MutableFloatSetFactory INSTANCE
-
-
Method Detail
-
empty
public MutableFloatSet empty()
- Specified by:
empty
in interfaceMutableFloatSetFactory
-
of
public MutableFloatSet of()
Description copied from interface:MutableFloatSetFactory
Same asMutableFloatSetFactory.empty()
.- Specified by:
of
in interfaceMutableFloatSetFactory
-
with
public MutableFloatSet with()
Description copied from interface:MutableFloatSetFactory
Same asMutableFloatSetFactory.empty()
.- Specified by:
with
in interfaceMutableFloatSetFactory
-
withInitialCapacity
public MutableFloatSet withInitialCapacity(int capacity)
Description copied from interface:MutableFloatSetFactory
Same asMutableFloatSetFactory.empty()
. but takes in an initial capacity- Specified by:
withInitialCapacity
in interfaceMutableFloatSetFactory
-
of
public MutableFloatSet of(float... items)
Description copied from interface:MutableFloatSetFactory
Same asMutableFloatSetFactory.with(float[])
.- Specified by:
of
in interfaceMutableFloatSetFactory
-
with
public MutableFloatSet with(float... items)
- Specified by:
with
in interfaceMutableFloatSetFactory
-
ofAll
public MutableFloatSet ofAll(FloatIterable items)
Description copied from interface:MutableFloatSetFactory
- Specified by:
ofAll
in interfaceMutableFloatSetFactory
-
withAll
public MutableFloatSet withAll(FloatIterable items)
- Specified by:
withAll
in interfaceMutableFloatSetFactory
-
ofAll
public MutableFloatSet ofAll(java.lang.Iterable<java.lang.Float> iterable)
Description copied from interface:MutableFloatSetFactory
- Specified by:
ofAll
in interfaceMutableFloatSetFactory
- Since:
- 10.0
-
withAll
public MutableFloatSet withAll(java.lang.Iterable<java.lang.Float> iterable)
- Specified by:
withAll
in interfaceMutableFloatSetFactory
- Since:
- 10.0
-
-