Interface ImmutableBooleanSetFactory
-
- All Known Implementing Classes:
ImmutableBooleanSetFactoryImpl
public interface ImmutableBooleanSetFactory
A factory which creates instances of typeImmutableBooleanSet
. 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 ImmutableBooleanSet
empty()
ImmutableBooleanSet
of()
Same asempty()
.ImmutableBooleanSet
of(boolean one)
Same aswith(boolean)
.ImmutableBooleanSet
of(boolean... items)
Same aswith(boolean[])
.ImmutableBooleanSet
ofAll(java.lang.Iterable<java.lang.Boolean> iterable)
Same aswithAll(Iterable)
.ImmutableBooleanSet
ofAll(BooleanIterable items)
Same aswithAll(BooleanIterable)
.ImmutableBooleanSet
with()
Same asempty()
.ImmutableBooleanSet
with(boolean one)
ImmutableBooleanSet
with(boolean... items)
ImmutableBooleanSet
withAll(java.lang.Iterable<java.lang.Boolean> iterable)
ImmutableBooleanSet
withAll(BooleanIterable items)
-
-
-
Method Detail
-
empty
ImmutableBooleanSet empty()
- Since:
- 6.0
-
of
ImmutableBooleanSet of()
Same asempty()
.
-
with
ImmutableBooleanSet with()
Same asempty()
.
-
of
ImmutableBooleanSet of(boolean one)
Same aswith(boolean)
.
-
with
ImmutableBooleanSet with(boolean one)
-
of
ImmutableBooleanSet of(boolean... items)
Same aswith(boolean[])
.
-
with
ImmutableBooleanSet with(boolean... items)
-
ofAll
ImmutableBooleanSet ofAll(BooleanIterable items)
Same aswithAll(BooleanIterable)
.
-
withAll
ImmutableBooleanSet withAll(BooleanIterable items)
-
ofAll
ImmutableBooleanSet ofAll(java.lang.Iterable<java.lang.Boolean> iterable)
Same aswithAll(Iterable)
.
-
withAll
ImmutableBooleanSet withAll(java.lang.Iterable<java.lang.Boolean> iterable)
-
-