Interface MutableBooleanListFactory
-
public interface MutableBooleanListFactoryA factory which creates instances of typeMutableBooleanList. This file was automatically generated from template file mutablePrimitiveListFactory.stg.- Since:
- 6.0.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description MutableBooleanListempty()MutableBooleanListof()Same asempty().MutableBooleanListof(boolean... items)Same aswith(boolean[]).MutableBooleanListofAll(Iterable<Boolean> iterable)Same aswithAll(Iterable).MutableBooleanListofAll(BooleanIterable items)Same aswithAll(BooleanIterable).MutableBooleanListwith()Same asempty().MutableBooleanListwith(boolean... items)Creates a new list using the passeditemsargument as the backing store.MutableBooleanListwithAll(Iterable<Boolean> iterable)MutableBooleanListwithAll(BooleanIterable items)default MutableBooleanListwithInitialCapacity(int capacity)Same asempty().default MutableBooleanListwrapCopy(boolean... array)Creates a new list by first copying the array passed in.
-
-
-
Method Detail
-
empty
MutableBooleanList empty()
-
of
MutableBooleanList of()
Same asempty().
-
with
MutableBooleanList with()
Same asempty().
-
withInitialCapacity
default MutableBooleanList withInitialCapacity(int capacity)
Same asempty(). but takes in an initial capacity- Since:
- 10.3
-
of
MutableBooleanList of(boolean... items)
Same aswith(boolean[]).
-
with
MutableBooleanList with(boolean... items)
Creates a new list using the passeditemsargument as the backing store.!!! WARNING: This method uses the passed in array, so can be very unsafe if the original array is held onto anywhere else. !!!
-
wrapCopy
default MutableBooleanList wrapCopy(boolean... array)
Creates a new list by first copying the array passed in.
-
ofAll
MutableBooleanList ofAll(BooleanIterable items)
Same aswithAll(BooleanIterable).
-
withAll
MutableBooleanList withAll(BooleanIterable items)
-
ofAll
MutableBooleanList ofAll(Iterable<Boolean> iterable)
Same aswithAll(Iterable).
-
withAll
MutableBooleanList withAll(Iterable<Boolean> iterable)
-
-