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