Class MutableDoubleSetFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.set.mutable.primitive.MutableDoubleSetFactoryImpl
-
- All Implemented Interfaces:
MutableDoubleSetFactory
public class MutableDoubleSetFactoryImpl extends Object implements MutableDoubleSetFactory
MutableDoubleSetFactoryImpl is a factory implementation which creates instances of typeMutableDoubleSet. This file was automatically generated from template file mutablePrimitiveSetFactoryImpl.stg.- Since:
- 6.0.
-
-
Field Summary
Fields Modifier and Type Field Description static MutableDoubleSetFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description MutableDoubleSetFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableDoubleSetempty()MutableDoubleSetof()MutableDoubleSetof(double... items)MutableDoubleSetofAll(Iterable<Double> iterable)MutableDoubleSetofAll(DoubleStream items)MutableDoubleSetofAll(DoubleIterable items)MutableDoubleSetwith()MutableDoubleSetwith(double... items)MutableDoubleSetwithAll(Iterable<Double> iterable)MutableDoubleSetwithAll(DoubleStream items)MutableDoubleSetwithAll(DoubleIterable items)MutableDoubleSetwithInitialCapacity(int capacity)
-
-
-
Field Detail
-
INSTANCE
public static final MutableDoubleSetFactory INSTANCE
-
-
Method Detail
-
empty
public MutableDoubleSet empty()
- Specified by:
emptyin interfaceMutableDoubleSetFactory
-
of
public MutableDoubleSet of()
- Specified by:
ofin interfaceMutableDoubleSetFactory
-
with
public MutableDoubleSet with()
- Specified by:
within interfaceMutableDoubleSetFactory
-
withInitialCapacity
public MutableDoubleSet withInitialCapacity(int capacity)
- Specified by:
withInitialCapacityin interfaceMutableDoubleSetFactory
-
of
public MutableDoubleSet of(double... items)
- Specified by:
ofin interfaceMutableDoubleSetFactory
-
with
public MutableDoubleSet with(double... items)
- Specified by:
within interfaceMutableDoubleSetFactory
-
ofAll
public MutableDoubleSet ofAll(DoubleIterable items)
- Specified by:
ofAllin interfaceMutableDoubleSetFactory
-
withAll
public MutableDoubleSet withAll(DoubleIterable items)
- Specified by:
withAllin interfaceMutableDoubleSetFactory
-
ofAll
public MutableDoubleSet ofAll(Iterable<Double> iterable)
- Specified by:
ofAllin interfaceMutableDoubleSetFactory- Since:
- 10.0
-
withAll
public MutableDoubleSet withAll(Iterable<Double> iterable)
- Specified by:
withAllin interfaceMutableDoubleSetFactory- Since:
- 10.0
-
ofAll
public MutableDoubleSet ofAll(DoubleStream items)
- Specified by:
ofAllin interfaceMutableDoubleSetFactory- Since:
- 9.0
-
withAll
public MutableDoubleSet withAll(DoubleStream items)
- Specified by:
withAllin interfaceMutableDoubleSetFactory- Since:
- 9.0
-
-