Package | Description |
---|---|
tech.tablesaw.api | |
tech.tablesaw.table |
Modifier and Type | Method | Description |
---|---|---|
Row |
Table.appendRow() |
Appends an empty row and returns a Row object indexed to the newly added row so values can be
set.
|
Row |
Table.RowPair.getFirst() |
Deprecated.
|
Row |
Table.RowPair.getSecond() |
Deprecated.
|
Row |
Row.next() |
Increments the row pointer, making the next row's data accessible
|
Row |
Table.row(int rowIndex) |
Returns a new Row object with its position set to the given zero-based row index.
|
Modifier and Type | Method | Description |
---|---|---|
Iterator<Row> |
Table.iterator() |
|
Stream<Row> |
Table.stream() |
Returns the rows in this table as a Stream
|
Modifier and Type | Method | Description |
---|---|---|
void |
Table.addRow(Row row) |
Deprecated.
Use
Table.append(Row) instead. |
Table |
Table.append(Row row) |
Appends the given row to this table and returns the table.
|
Modifier and Type | Method | Description |
---|---|---|
boolean |
Table.detect(Predicate<Row> predicate) |
Deprecated.
use
stream().anyMatch |
void |
Table.doWithRows(Consumer<Row> doable) |
Deprecated.
use
stream().forEach |
Table |
Table.sortOn(Comparator<Row> rowComparator) |
Returns a copy of this table sorted using the given comparator
|
Constructor | Description |
---|---|
RowPair(Row first,
Row second) |
Deprecated.
|
Modifier and Type | Method | Description |
---|---|---|
Iterator<Row> |
TableSlice.iterator() |
Iterate over the underlying rows in the source table.
|
Copyright © 2021. All rights reserved.