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 MutableFloatSetFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description MutableFloatSetFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableFloatSetempty()MutableFloatSetof()Same asMutableFloatSetFactory.empty().MutableFloatSetof(float... items)Same asMutableFloatSetFactory.with(float[]).MutableFloatSetofAll(java.lang.Iterable<java.lang.Float> iterable)MutableFloatSetofAll(FloatIterable items)MutableFloatSetwith()Same asMutableFloatSetFactory.empty().MutableFloatSetwith(float... items)MutableFloatSetwithAll(java.lang.Iterable<java.lang.Float> iterable)MutableFloatSetwithAll(FloatIterable items)MutableFloatSetwithInitialCapacity(int capacity)Same asMutableFloatSetFactory.empty().
-
-
-
Field Detail
-
INSTANCE
public static final MutableFloatSetFactory INSTANCE
-
-
Method Detail
-
empty
public MutableFloatSet empty()
- Specified by:
emptyin interfaceMutableFloatSetFactory
-
of
public MutableFloatSet of()
Description copied from interface:MutableFloatSetFactorySame asMutableFloatSetFactory.empty().- Specified by:
ofin interfaceMutableFloatSetFactory
-
with
public MutableFloatSet with()
Description copied from interface:MutableFloatSetFactorySame asMutableFloatSetFactory.empty().- Specified by:
within interfaceMutableFloatSetFactory
-
withInitialCapacity
public MutableFloatSet withInitialCapacity(int capacity)
Description copied from interface:MutableFloatSetFactorySame asMutableFloatSetFactory.empty(). but takes in an initial capacity- Specified by:
withInitialCapacityin interfaceMutableFloatSetFactory
-
of
public MutableFloatSet of(float... items)
Description copied from interface:MutableFloatSetFactorySame asMutableFloatSetFactory.with(float[]).- Specified by:
ofin interfaceMutableFloatSetFactory
-
with
public MutableFloatSet with(float... items)
- Specified by:
within interfaceMutableFloatSetFactory
-
ofAll
public MutableFloatSet ofAll(FloatIterable items)
Description copied from interface:MutableFloatSetFactory- Specified by:
ofAllin interfaceMutableFloatSetFactory
-
withAll
public MutableFloatSet withAll(FloatIterable items)
- Specified by:
withAllin interfaceMutableFloatSetFactory
-
ofAll
public MutableFloatSet ofAll(java.lang.Iterable<java.lang.Float> iterable)
Description copied from interface:MutableFloatSetFactory- Specified by:
ofAllin interfaceMutableFloatSetFactory- Since:
- 10.0
-
withAll
public MutableFloatSet withAll(java.lang.Iterable<java.lang.Float> iterable)
- Specified by:
withAllin interfaceMutableFloatSetFactory- Since:
- 10.0
-
-