BASE_CHARACTERISTICS| Modifier and Type | Method and Description |
|---|---|
BooleanColumn |
append(Column<Boolean> tail)
Appends two columns with the same element type.
|
static BooleanColumnBuilder |
builder() |
static Collector<Boolean,?,BooleanColumn> |
collector()
Collects a stream of
Booleans into a new BooleanColumn. |
BooleanColumn |
copy()
Returns a column equal to this one, but with elements stored in a newly
allocated buffer.
|
boolean |
getBoolean(int index)
Primitive specialization of
List.get(int). |
static BooleanColumn |
of(Boolean... elements)
Returns a new
BooleanColumn containing the specified elements. |
BooleanColumn |
subColumn(int fromIndex,
int toIndex)
Returns a view of the portion of this column between the specified
fromIndex, inclusive, and toIndex, exclusive.
|
append, ceiling, characteristics, comparator, first, floor, getType, head, head, higher, isDistinct, isNonnull, isNull, isSorted, last, lower, spliterator, subColumnByValue, subColumnByValue, tail, tail, toDistinct, toHeap, toSortedadd, add, addAll, addAll, clear, contains, containsAll, equals, get, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, replaceAll, retainAll, set, size, sort, subList, toArray, toArrayparallelStream, removeIf, streamBooleanColumn subColumn(int fromIndex, int toIndex)
ColumnBooleanColumn append(Column<Boolean> tail)
ColumnBoth columns must have the same characteristics. If they're both unique indices then the first value of the provided column must be greater than the last value of this column.
BooleanColumn copy()
Columnstatic BooleanColumnBuilder builder()
boolean getBoolean(int index)
List.get(int).index - - index of the value to returnIndexOutOfBoundsException - if index is negative or is not less
than List.size()static BooleanColumn of(Boolean... elements)
BooleanColumn containing the specified elements.elements - the elements to be included in the new columnBooleanColumn containing the specified elements.static Collector<Boolean,?,BooleanColumn> collector()
Booleans into a new BooleanColumn.BooleanColumnCopyright © 2020. All rights reserved.