Interface ImmutableBooleanBagFactory
-
- All Known Implementing Classes:
ImmutableBooleanBagFactoryImpl
public interface ImmutableBooleanBagFactory
A factory which creates instances of typeImmutableBooleanBag
. This file was automatically generated from template file immutablePrimitiveBagFactory.stg.- Since:
- 4.0.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ImmutableBooleanBag
empty()
ImmutableBooleanBag
of()
Same asempty()
.ImmutableBooleanBag
of(boolean one)
Same aswith(boolean)
.ImmutableBooleanBag
of(boolean... items)
Same aswith(boolean[])
.ImmutableBooleanBag
ofAll(java.lang.Iterable<java.lang.Boolean> iterable)
Same aswithAll(Iterable)
.ImmutableBooleanBag
ofAll(BooleanIterable items)
Same aswithAll(BooleanIterable)
.ImmutableBooleanBag
with()
Same asempty()
.ImmutableBooleanBag
with(boolean one)
ImmutableBooleanBag
with(boolean... items)
ImmutableBooleanBag
withAll(java.lang.Iterable<java.lang.Boolean> iterable)
ImmutableBooleanBag
withAll(BooleanIterable items)
-
-
-
Method Detail
-
empty
ImmutableBooleanBag empty()
- Since:
- 6.0
-
of
ImmutableBooleanBag of()
Same asempty()
.
-
with
ImmutableBooleanBag with()
Same asempty()
.
-
of
ImmutableBooleanBag of(boolean one)
Same aswith(boolean)
.
-
with
ImmutableBooleanBag with(boolean one)
-
of
ImmutableBooleanBag of(boolean... items)
Same aswith(boolean[])
.
-
with
ImmutableBooleanBag with(boolean... items)
-
ofAll
ImmutableBooleanBag ofAll(BooleanIterable items)
Same aswithAll(BooleanIterable)
.
-
withAll
ImmutableBooleanBag withAll(BooleanIterable items)
-
ofAll
ImmutableBooleanBag ofAll(java.lang.Iterable<java.lang.Boolean> iterable)
Same aswithAll(Iterable)
.
-
withAll
ImmutableBooleanBag withAll(java.lang.Iterable<java.lang.Boolean> iterable)
-
-