Interface ImmutableFloatSetFactory
- All Known Implementing Classes:
ImmutableFloatSetFactoryImpl
public interface ImmutableFloatSetFactory
A factory which creates instances of type
ImmutableFloatSet
.
This file was automatically generated from template file immutablePrimitiveSetFactory.stg.- Since:
- 4.0.
-
Method Summary
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(Iterable<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(Iterable<Float> iterable)
ImmutableFloatSet
withAll(FloatIterable items)
-
Method Details
-
empty
ImmutableFloatSet empty()- Since:
- 6.0
-
of
ImmutableFloatSet of()Same asempty()
. -
with
ImmutableFloatSet with()Same asempty()
. -
of
Same aswith(float)
. -
with
-
of
Same aswith(float[])
. -
with
-
ofAll
Same aswithAll(FloatIterable)
. -
withAll
-
ofAll
Same aswithAll(Iterable)
. -
withAll
-