public interface MutableBooleanListFactory
MutableBooleanList.
This file was automatically generated from template file mutablePrimitiveListFactory.stg.| Modifier and Type | Method and Description |
|---|---|
MutableBooleanList |
empty() |
MutableBooleanList |
of()
Same as
empty(). |
MutableBooleanList |
of(boolean... items)
Same as
with(boolean[]). |
MutableBooleanList |
ofAll(BooleanIterable items)
Same as
withAll(BooleanIterable). |
MutableBooleanList |
ofAll(Iterable<Boolean> iterable)
Same as
withAll(Iterable). |
MutableBooleanList |
with()
Same as
empty(). |
MutableBooleanList |
with(boolean... items)
Creates a new list using the passed
items argument as the backing store. |
MutableBooleanList |
withAll(BooleanIterable items) |
MutableBooleanList |
withAll(Iterable<Boolean> iterable) |
default MutableBooleanList |
withInitialCapacity(int capacity)
Same as
empty(). |
default MutableBooleanList |
wrapCopy(boolean... array)
Creates a new list by first copying the array passed in.
|
MutableBooleanList empty()
MutableBooleanList of()
empty().MutableBooleanList with()
empty().default MutableBooleanList withInitialCapacity(int capacity)
empty(). but takes in an initial capacityMutableBooleanList of(boolean... items)
with(boolean[]).MutableBooleanList with(boolean... items)
items argument 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. !!!
default MutableBooleanList wrapCopy(boolean... array)
MutableBooleanList ofAll(BooleanIterable items)
withAll(BooleanIterable).MutableBooleanList withAll(BooleanIterable items)
MutableBooleanList ofAll(Iterable<Boolean> iterable)
withAll(Iterable).MutableBooleanList withAll(Iterable<Boolean> iterable)
Copyright © 2004–2020. All rights reserved.