Interface ImmutableBooleanListFactory
-
public interface ImmutableBooleanListFactoryA 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 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 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(Iterable<Boolean> iterable)
Same aswithAll(Iterable).
-
withAll
ImmutableBooleanList withAll(Iterable<Boolean> iterable)
-
-