Interface MutableBooleanBagFactory
-
public interface MutableBooleanBagFactoryA 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 MutableBooleanBagempty()MutableBooleanBagof()Same asempty().MutableBooleanBagof(boolean... items)Same aswith(boolean[]).MutableBooleanBagofAll(Iterable<Boolean> iterable)Same aswithAll(Iterable).MutableBooleanBagofAll(BooleanIterable items)Same aswithAll(BooleanIterable).MutableBooleanBagwith()Same asempty().MutableBooleanBagwith(boolean... items)MutableBooleanBagwithAll(Iterable<Boolean> iterable)MutableBooleanBagwithAll(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(Iterable<Boolean> iterable)
Same aswithAll(Iterable).
-
withAll
MutableBooleanBag withAll(Iterable<Boolean> iterable)
-
-