Class ImmutableFloatSetFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.set.immutable.primitive.ImmutableFloatSetFactoryImpl
-
- All Implemented Interfaces:
ImmutableFloatSetFactory
public class ImmutableFloatSetFactoryImpl extends Object implements ImmutableFloatSetFactory
ImmutableFloatSetFactoryImpl is a factory implementation which creates instances of typeImmutableFloatSet. This file was automatically generated from template file immutablePrimitiveSetFactoryImpl.stg.- Since:
- 4.0.
-
-
Field Summary
Fields Modifier and Type Field Description static ImmutableFloatSetFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description ImmutableFloatSetFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableFloatSetempty()ImmutableFloatSetof()ImmutableFloatSetof(float one)ImmutableFloatSetof(float... items)ImmutableFloatSetofAll(Iterable<Float> iterable)ImmutableFloatSetofAll(FloatIterable items)ImmutableFloatSetwith()ImmutableFloatSetwith(float one)ImmutableFloatSetwith(float... items)ImmutableFloatSetwithAll(Iterable<Float> iterable)ImmutableFloatSetwithAll(FloatIterable items)
-
-
-
Field Detail
-
INSTANCE
public static final ImmutableFloatSetFactory INSTANCE
-
-
Method Detail
-
empty
public ImmutableFloatSet empty()
- Specified by:
emptyin interfaceImmutableFloatSetFactory
-
of
public ImmutableFloatSet of()
- Specified by:
ofin interfaceImmutableFloatSetFactory
-
with
public ImmutableFloatSet with()
- Specified by:
within interfaceImmutableFloatSetFactory
-
of
public ImmutableFloatSet of(float one)
- Specified by:
ofin interfaceImmutableFloatSetFactory
-
with
public ImmutableFloatSet with(float one)
- Specified by:
within interfaceImmutableFloatSetFactory
-
of
public ImmutableFloatSet of(float... items)
- Specified by:
ofin interfaceImmutableFloatSetFactory
-
with
public ImmutableFloatSet with(float... items)
- Specified by:
within interfaceImmutableFloatSetFactory
-
ofAll
public ImmutableFloatSet ofAll(FloatIterable items)
- Specified by:
ofAllin interfaceImmutableFloatSetFactory
-
withAll
public ImmutableFloatSet withAll(FloatIterable items)
- Specified by:
withAllin interfaceImmutableFloatSetFactory
-
ofAll
public ImmutableFloatSet ofAll(Iterable<Float> iterable)
- Specified by:
ofAllin interfaceImmutableFloatSetFactory- Since:
- 10.0
-
withAll
public ImmutableFloatSet withAll(Iterable<Float> iterable)
- Specified by:
withAllin interfaceImmutableFloatSetFactory- Since:
- 10.0
-
-