Interface ImmutableBooleanSetFactory
-
public interface ImmutableBooleanSetFactoryA factory which creates instances of typeImmutableBooleanSet. This file was automatically generated from template file immutablePrimitiveSetFactory.stg.- Since:
- 4.0.
-
-
Method Summary
All Methods Instance Methods Abstract Methods 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 Detail
-
empty
ImmutableBooleanSet empty()
- Since:
- 6.0
-
of
ImmutableBooleanSet of()
Same asempty().
-
with
ImmutableBooleanSet with()
Same asempty().
-
of
ImmutableBooleanSet of(boolean one)
Same aswith(boolean).
-
with
ImmutableBooleanSet with(boolean one)
-
of
ImmutableBooleanSet of(boolean... items)
Same aswith(boolean[]).
-
with
ImmutableBooleanSet with(boolean... items)
-
ofAll
ImmutableBooleanSet ofAll(BooleanIterable items)
Same aswithAll(BooleanIterable).
-
withAll
ImmutableBooleanSet withAll(BooleanIterable items)
-
ofAll
ImmutableBooleanSet ofAll(Iterable<Boolean> iterable)
Same aswithAll(Iterable).
-
withAll
ImmutableBooleanSet withAll(Iterable<Boolean> iterable)
-
-