Package | Description |
---|---|
tech.tablesaw.api | |
tech.tablesaw.table |
Modifier and Type | Method and 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() |
Row |
Table.row(int rowIndex) |
Modifier and Type | Method and Description |
---|---|
Iterator<Row> |
Table.iterator() |
Stream<Row> |
Table.stream() |
Modifier and Type | Method and Description |
---|---|
void |
Table.addRow(Row row) |
Modifier and Type | Method and 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 and Description |
---|
RowPair(Row first,
Row second)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
Iterator<Row> |
TableSlice.iterator()
Iterate over the underlying rows in the source table.
|
Copyright © 2020. All rights reserved.