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