Interface ImmutableBooleanSetFactory
- All Known Implementing Classes:
ImmutableBooleanSetFactoryImpl
public interface ImmutableBooleanSetFactory
A factory which creates instances of type
ImmutableBooleanSet.
This file was automatically generated from template file immutablePrimitiveSetFactory.stg.- Since:
- 4.0.
-
Method Summary
Modifier and Type Method Description ImmutableBooleanSetempty()ImmutableBooleanSetof()Same asempty().ImmutableBooleanSetof(boolean one)Same aswith(boolean).ImmutableBooleanSetof(boolean... items)Same aswith(boolean[]).ImmutableBooleanSetofAll(Iterable<Boolean> iterable)Same aswithAll(Iterable).ImmutableBooleanSetofAll(BooleanIterable items)Same aswithAll(BooleanIterable).ImmutableBooleanSetwith()Same asempty().ImmutableBooleanSetwith(boolean one)ImmutableBooleanSetwith(boolean... items)ImmutableBooleanSetwithAll(Iterable<Boolean> iterable)ImmutableBooleanSetwithAll(BooleanIterable items)
-
Method Details
-
empty
ImmutableBooleanSet empty()- Since:
- 6.0
-
of
ImmutableBooleanSet of()Same asempty(). -
with
ImmutableBooleanSet with()Same asempty(). -
of
Same aswith(boolean). -
with
-
of
Same aswith(boolean[]). -
with
-
ofAll
Same aswithAll(BooleanIterable). -
withAll
-
ofAll
Same aswithAll(Iterable). -
withAll
-