Class ImmutableFloatSetFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.set.immutable.primitive.ImmutableFloatSetFactoryImpl
-
- All Implemented Interfaces:
ImmutableFloatSetFactory
public class ImmutableFloatSetFactoryImpl extends java.lang.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()Same asImmutableFloatSetFactory.empty().ImmutableFloatSetof(float one)Same asImmutableFloatSetFactory.with(float).ImmutableFloatSetof(float... items)ImmutableFloatSetofAll(java.lang.Iterable<java.lang.Float> iterable)ImmutableFloatSetofAll(FloatIterable items)ImmutableFloatSetwith()Same asImmutableFloatSetFactory.empty().ImmutableFloatSetwith(float one)ImmutableFloatSetwith(float... items)ImmutableFloatSetwithAll(java.lang.Iterable<java.lang.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()
Description copied from interface:ImmutableFloatSetFactorySame asImmutableFloatSetFactory.empty().- Specified by:
ofin interfaceImmutableFloatSetFactory
-
with
public ImmutableFloatSet with()
Description copied from interface:ImmutableFloatSetFactorySame asImmutableFloatSetFactory.empty().- Specified by:
within interfaceImmutableFloatSetFactory
-
of
public ImmutableFloatSet of(float one)
Description copied from interface:ImmutableFloatSetFactorySame asImmutableFloatSetFactory.with(float).- Specified by:
ofin interfaceImmutableFloatSetFactory
-
with
public ImmutableFloatSet with(float one)
- Specified by:
within interfaceImmutableFloatSetFactory
-
of
public ImmutableFloatSet of(float... items)
Description copied from interface:ImmutableFloatSetFactory- Specified by:
ofin interfaceImmutableFloatSetFactory
-
with
public ImmutableFloatSet with(float... items)
- Specified by:
within interfaceImmutableFloatSetFactory
-
ofAll
public ImmutableFloatSet ofAll(FloatIterable items)
Description copied from interface:ImmutableFloatSetFactory- Specified by:
ofAllin interfaceImmutableFloatSetFactory
-
withAll
public ImmutableFloatSet withAll(FloatIterable items)
- Specified by:
withAllin interfaceImmutableFloatSetFactory
-
ofAll
public ImmutableFloatSet ofAll(java.lang.Iterable<java.lang.Float> iterable)
Description copied from interface:ImmutableFloatSetFactory- Specified by:
ofAllin interfaceImmutableFloatSetFactory- Since:
- 10.0
-
withAll
public ImmutableFloatSet withAll(java.lang.Iterable<java.lang.Float> iterable)
- Specified by:
withAllin interfaceImmutableFloatSetFactory- Since:
- 10.0
-
-