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