Interface MutableBooleanSetFactory
-
- All Known Implementing Classes:
MutableBooleanSetFactoryImpl
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(java.lang.Iterable<java.lang.Boolean> iterable)Same aswithAll(Iterable).MutableBooleanSetofAll(BooleanIterable items)Same aswithAll(BooleanIterable).MutableBooleanSetwith()Same asempty().MutableBooleanSetwith(boolean... items)MutableBooleanSetwithAll(java.lang.Iterable<java.lang.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(java.lang.Iterable<java.lang.Boolean> iterable)
Same aswithAll(Iterable).
-
withAll
MutableBooleanSet withAll(java.lang.Iterable<java.lang.Boolean> iterable)
-
-