Class MutableFloatSetFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.set.mutable.primitive.MutableFloatSetFactoryImpl
-
- All Implemented Interfaces:
MutableFloatSetFactory
public class MutableFloatSetFactoryImpl extends 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 MutableFloatSetFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description MutableFloatSetFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableFloatSetempty()MutableFloatSetof()MutableFloatSetof(float... items)MutableFloatSetofAll(Iterable<Float> iterable)MutableFloatSetofAll(FloatIterable items)MutableFloatSetwith()MutableFloatSetwith(float... items)MutableFloatSetwithAll(Iterable<Float> iterable)MutableFloatSetwithAll(FloatIterable items)MutableFloatSetwithInitialCapacity(int capacity)
-
-
-
Field Detail
-
INSTANCE
public static final MutableFloatSetFactory INSTANCE
-
-
Method Detail
-
empty
public MutableFloatSet empty()
- Specified by:
emptyin interfaceMutableFloatSetFactory
-
of
public MutableFloatSet of()
- Specified by:
ofin interfaceMutableFloatSetFactory
-
with
public MutableFloatSet with()
- Specified by:
within interfaceMutableFloatSetFactory
-
withInitialCapacity
public MutableFloatSet withInitialCapacity(int capacity)
- Specified by:
withInitialCapacityin interfaceMutableFloatSetFactory
-
of
public MutableFloatSet of(float... items)
- Specified by:
ofin interfaceMutableFloatSetFactory
-
with
public MutableFloatSet with(float... items)
- Specified by:
within interfaceMutableFloatSetFactory
-
ofAll
public MutableFloatSet ofAll(FloatIterable items)
- Specified by:
ofAllin interfaceMutableFloatSetFactory
-
withAll
public MutableFloatSet withAll(FloatIterable items)
- Specified by:
withAllin interfaceMutableFloatSetFactory
-
ofAll
public MutableFloatSet ofAll(Iterable<Float> iterable)
- Specified by:
ofAllin interfaceMutableFloatSetFactory- Since:
- 10.0
-
withAll
public MutableFloatSet withAll(Iterable<Float> iterable)
- Specified by:
withAllin interfaceMutableFloatSetFactory- Since:
- 10.0
-
-