Interface ImmutableFloatSetFactory
-
public interface ImmutableFloatSetFactoryA 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 ImmutableFloatSetempty()ImmutableFloatSetof()Same asempty().ImmutableFloatSetof(float one)Same aswith(float).ImmutableFloatSetof(float... items)Same aswith(float[]).ImmutableFloatSetofAll(Iterable<Float> iterable)Same aswithAll(Iterable).ImmutableFloatSetofAll(FloatIterable items)Same aswithAll(FloatIterable).ImmutableFloatSetwith()Same asempty().ImmutableFloatSetwith(float one)ImmutableFloatSetwith(float... items)ImmutableFloatSetwithAll(Iterable<Float> iterable)ImmutableFloatSetwithAll(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(Iterable<Float> iterable)
Same aswithAll(Iterable).
-
withAll
ImmutableFloatSet withAll(Iterable<Float> iterable)
-
-