Interface MutableBooleanSetFactory
-
- All Known Implementing Classes:
MutableBooleanSetFactoryImpl
public interface MutableBooleanSetFactory
A factory which creates instances of typeMutableBooleanSet
. This file was automatically generated from template file mutablePrimitiveSetFactory.stg.- Since:
- 6.0.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MutableBooleanSet
empty()
MutableBooleanSet
of()
Same asempty()
.MutableBooleanSet
of(boolean... items)
Same aswith(boolean[])
.MutableBooleanSet
ofAll(java.lang.Iterable<java.lang.Boolean> iterable)
Same aswithAll(Iterable)
.MutableBooleanSet
ofAll(BooleanIterable items)
Same aswithAll(BooleanIterable)
.MutableBooleanSet
with()
Same asempty()
.MutableBooleanSet
with(boolean... items)
MutableBooleanSet
withAll(java.lang.Iterable<java.lang.Boolean> iterable)
MutableBooleanSet
withAll(BooleanIterable items)
-
-
-
Method Detail
-
empty
MutableBooleanSet empty()
-
of
MutableBooleanSet of()
Same asempty()
.
-
with
MutableBooleanSet with()
Same asempty()
.
-
of
MutableBooleanSet of(boolean... items)
Same aswith(boolean[])
.
-
with
MutableBooleanSet with(boolean... items)
-
ofAll
MutableBooleanSet ofAll(BooleanIterable items)
Same aswithAll(BooleanIterable)
.
-
withAll
MutableBooleanSet withAll(BooleanIterable items)
-
ofAll
MutableBooleanSet ofAll(java.lang.Iterable<java.lang.Boolean> iterable)
Same aswithAll(Iterable)
.
-
withAll
MutableBooleanSet withAll(java.lang.Iterable<java.lang.Boolean> iterable)
-
-