Interface MutableBooleanSetFactory
-
public interface MutableBooleanSetFactoryA 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 MutableBooleanSetempty()MutableBooleanSetof()Same asempty().MutableBooleanSetof(boolean... items)Same aswith(boolean[]).MutableBooleanSetofAll(Iterable<Boolean> iterable)Same aswithAll(Iterable).MutableBooleanSetofAll(BooleanIterable items)Same aswithAll(BooleanIterable).MutableBooleanSetwith()Same asempty().MutableBooleanSetwith(boolean... items)MutableBooleanSetwithAll(Iterable<Boolean> iterable)MutableBooleanSetwithAll(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(Iterable<Boolean> iterable)
Same aswithAll(Iterable).
-
withAll
MutableBooleanSet withAll(Iterable<Boolean> iterable)
-
-