Class ImmutableDoubleSetFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.set.immutable.primitive.ImmutableDoubleSetFactoryImpl
-
- All Implemented Interfaces:
ImmutableDoubleSetFactory
public class ImmutableDoubleSetFactoryImpl extends Object implements ImmutableDoubleSetFactory
ImmutableDoubleSetFactoryImpl is a factory implementation which creates instances of typeImmutableDoubleSet. This file was automatically generated from template file immutablePrimitiveSetFactoryImpl.stg.- Since:
- 4.0.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableDoubleSetFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableDoubleSetFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableDoubleSetempty()ImmutableDoubleSetof()ImmutableDoubleSetof(double one)ImmutableDoubleSetof(double... items)ImmutableDoubleSetofAll(Iterable<Double> iterable)ImmutableDoubleSetofAll(DoubleStream items)ImmutableDoubleSetofAll(DoubleIterable items)ImmutableDoubleSetwith()ImmutableDoubleSetwith(double one)ImmutableDoubleSetwith(double... items)ImmutableDoubleSetwithAll(Iterable<Double> iterable)ImmutableDoubleSetwithAll(DoubleStream items)ImmutableDoubleSetwithAll(DoubleIterable items)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableDoubleSetFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableDoubleSet empty()
- Specified by:
emptyin interfaceImmutableDoubleSetFactory
-
of
public ImmutableDoubleSet of()
- Specified by:
ofin interfaceImmutableDoubleSetFactory
-
with
public ImmutableDoubleSet with()
- Specified by:
within interfaceImmutableDoubleSetFactory
-
of
public ImmutableDoubleSet of(double one)
- Specified by:
ofin interfaceImmutableDoubleSetFactory
-
with
public ImmutableDoubleSet with(double one)
- Specified by:
within interfaceImmutableDoubleSetFactory
-
of
public ImmutableDoubleSet of(double... items)
- Specified by:
ofin interfaceImmutableDoubleSetFactory
-
with
public ImmutableDoubleSet with(double... items)
- Specified by:
within interfaceImmutableDoubleSetFactory
-
ofAll
public ImmutableDoubleSet ofAll(DoubleIterable items)
- Specified by:
ofAllin interfaceImmutableDoubleSetFactory
-
withAll
public ImmutableDoubleSet withAll(DoubleIterable items)
- Specified by:
withAllin interfaceImmutableDoubleSetFactory
-
ofAll
public ImmutableDoubleSet ofAll(Iterable<Double> iterable)
- Specified by:
ofAllin interfaceImmutableDoubleSetFactory- Since:
- 10.0
-
withAll
public ImmutableDoubleSet withAll(Iterable<Double> iterable)
- Specified by:
withAllin interfaceImmutableDoubleSetFactory- Since:
- 10.0
-
ofAll
public ImmutableDoubleSet ofAll(DoubleStream items)
- Specified by:
ofAllin interfaceImmutableDoubleSetFactory- Since:
- 9.0
-
withAll
public ImmutableDoubleSet withAll(DoubleStream items)
- Specified by:
withAllin interfaceImmutableDoubleSetFactory- Since:
- 9.0
-
-