Interface ImmutableFloatSetFactory
-
- All Known Implementing Classes:
ImmutableFloatSetFactoryImpl
public interface ImmutableFloatSetFactory
A factory which creates instances of typeImmutableFloatSet
. This file was automatically generated from template file immutablePrimitiveSetFactory.stg.- Since:
- 4.0.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ImmutableFloatSet
empty()
ImmutableFloatSet
of()
Same asempty()
.ImmutableFloatSet
of(float one)
Same aswith(float)
.ImmutableFloatSet
of(float... items)
Same aswith(float[])
.ImmutableFloatSet
ofAll(java.lang.Iterable<java.lang.Float> iterable)
Same aswithAll(Iterable)
.ImmutableFloatSet
ofAll(FloatIterable items)
Same aswithAll(FloatIterable)
.ImmutableFloatSet
with()
Same asempty()
.ImmutableFloatSet
with(float one)
ImmutableFloatSet
with(float... items)
ImmutableFloatSet
withAll(java.lang.Iterable<java.lang.Float> iterable)
ImmutableFloatSet
withAll(FloatIterable items)
-
-
-
Method Detail
-
empty
ImmutableFloatSet empty()
- Since:
- 6.0
-
of
ImmutableFloatSet of()
Same asempty()
.
-
with
ImmutableFloatSet with()
Same asempty()
.
-
of
ImmutableFloatSet of(float one)
Same aswith(float)
.
-
with
ImmutableFloatSet with(float one)
-
of
ImmutableFloatSet of(float... items)
Same aswith(float[])
.
-
with
ImmutableFloatSet with(float... items)
-
ofAll
ImmutableFloatSet ofAll(FloatIterable items)
Same aswithAll(FloatIterable)
.
-
withAll
ImmutableFloatSet withAll(FloatIterable items)
-
ofAll
ImmutableFloatSet ofAll(java.lang.Iterable<java.lang.Float> iterable)
Same aswithAll(Iterable)
.
-
withAll
ImmutableFloatSet withAll(java.lang.Iterable<java.lang.Float> iterable)
-
-