Uses of Interface
org.csveed.api.Row
Packages that use Row
Package
Description
The main interface of interaction with CSVeed for a developer.
The package responsible for converting Rows to Beans.
The package responsible for converting a group of tokens into Header and Rows.
-
Uses of Row in org.csveed.api
Methods in org.csveed.api that return RowModifier and TypeMethodDescriptionCsvClient.readRow()
Reads a single row from the file and returns this.CsvClientImpl.readRow()
Writes a single row (consisting of String cells) to the table.Methods in org.csveed.api that return types with arguments of type RowModifier and TypeMethodDescriptionCsvClient.readRows()
Reads all rows from the file and returns them as a List.CsvClientImpl.readRows()
Methods in org.csveed.api with parameters of type RowModifier and TypeMethodDescriptionvoid
Writes a single row to the table.void
Method parameters in org.csveed.api with type arguments of type RowModifier and TypeMethodDescriptionvoid
CsvClient.writeRows
(Collection<Row> rows) Writes a collection of rows to the table.void
CsvClientImpl.writeRows
(Collection<Row> rows) -
Uses of Row in org.csveed.bean
Methods in org.csveed.bean with parameters of type Row -
Uses of Row in org.csveed.row
Classes in org.csveed.row that implement RowMethods in org.csveed.row that return RowModifier and TypeMethodDescriptionRowReader.readRow()
Reads a single row from the file and returns this.RowReaderImpl.readRow()
Writes the cells of a table row as an individual row.Methods in org.csveed.row that return types with arguments of type RowModifier and TypeMethodDescriptionRowReader.readRows()
Reads all rows from the file and returns them as a List.RowReaderImpl.readRows()
Methods in org.csveed.row with parameters of type RowModifier and TypeMethodDescriptionvoid
Writes a single row to the Writer.void
Method parameters in org.csveed.row with type arguments of type RowModifier and TypeMethodDescriptionvoid
RowWriter.writeRows
(Collection<Row> rows) Writes multiples rows to the table.void
RowWriterImpl.writeRows
(Collection<Row> rows)