Interface MutableFloatSetFactory
-
- All Known Implementing Classes:
MutableFloatSetFactoryImpl
public interface MutableFloatSetFactory
A factory which creates instances of typeMutableFloatSet
. This file was automatically generated from template file mutablePrimitiveSetFactory.stg.- Since:
- 6.0.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description MutableFloatSet
empty()
MutableFloatSet
of()
Same asempty()
.MutableFloatSet
of(float... items)
Same aswith(float[])
.MutableFloatSet
ofAll(java.lang.Iterable<java.lang.Float> iterable)
Same aswithAll(Iterable)
.MutableFloatSet
ofAll(FloatIterable items)
Same aswithAll(FloatIterable)
.MutableFloatSet
with()
Same asempty()
.MutableFloatSet
with(float... items)
MutableFloatSet
withAll(java.lang.Iterable<java.lang.Float> iterable)
MutableFloatSet
withAll(FloatIterable items)
default MutableFloatSet
withInitialCapacity(int capacity)
Same asempty()
.
-
-
-
Method Detail
-
empty
MutableFloatSet empty()
-
of
MutableFloatSet of()
Same asempty()
.
-
with
MutableFloatSet with()
Same asempty()
.
-
withInitialCapacity
default MutableFloatSet withInitialCapacity(int capacity)
Same asempty()
. but takes in an initial capacity- Since:
- 10.3
-
of
MutableFloatSet of(float... items)
Same aswith(float[])
.
-
with
MutableFloatSet with(float... items)
-
ofAll
MutableFloatSet ofAll(FloatIterable items)
Same aswithAll(FloatIterable)
.
-
withAll
MutableFloatSet withAll(FloatIterable items)
-
ofAll
MutableFloatSet ofAll(java.lang.Iterable<java.lang.Float> iterable)
Same aswithAll(Iterable)
.
-
withAll
MutableFloatSet withAll(java.lang.Iterable<java.lang.Float> iterable)
-
-