Uses of Class
tech.tablesaw.api.Row
-
Packages that use Row Package Description tech.tablesaw.api tech.tablesaw.table -
-
Uses of Row in tech.tablesaw.api
Methods in tech.tablesaw.api that return Row 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
Row. next()
Increments the row pointer, making the next row's data accessibleRow
Table. row(int rowIndex)
Returns a new Row object with its position set to the given zero-based row index.Methods in tech.tablesaw.api that return types with arguments of type Row Modifier and Type Method Description Iterator<Row>
Table. iterator()
Stream<Row>
Table. stream()
Returns the rows in this table as a StreamMethods in tech.tablesaw.api with parameters of type Row Modifier and Type Method Description Table
Table. append(Row row)
Appends the given row to this table and returns the table.Method parameters in tech.tablesaw.api with type arguments of type Row Modifier and Type Method Description Table
Table. sortOn(Comparator<Row> rowComparator)
Returns a copy of this table sorted using the given comparator -
Uses of Row in tech.tablesaw.table
Methods in tech.tablesaw.table that return types with arguments of type Row Modifier and Type Method Description Iterator<Row>
TableSlice. iterator()
Iterate over the underlying rows in the source table.
-