Interface ImmutableBooleanBagFactory
-
public interface ImmutableBooleanBagFactoryA 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 ImmutableBooleanBagempty()ImmutableBooleanBagof()Same asempty().ImmutableBooleanBagof(boolean one)Same aswith(boolean).ImmutableBooleanBagof(boolean... items)Same aswith(boolean[]).ImmutableBooleanBagofAll(Iterable<Boolean> iterable)Same aswithAll(Iterable).ImmutableBooleanBagofAll(BooleanIterable items)Same aswithAll(BooleanIterable).ImmutableBooleanBagwith()Same asempty().ImmutableBooleanBagwith(boolean one)ImmutableBooleanBagwith(boolean... items)ImmutableBooleanBagwithAll(Iterable<Boolean> iterable)ImmutableBooleanBagwithAll(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(Iterable<Boolean> iterable)
Same aswithAll(Iterable).
-
withAll
ImmutableBooleanBag withAll(Iterable<Boolean> iterable)
-
-