- Type Parameters:
T
- the bean class into which the rows are converted
- All Known Implementing Classes:
CsvClientImpl
public interface CsvClient<T>
The CsvClient is responsible for reading/writing CSV rows and converting those into beans/rows. There are a couple of
ways to initialize a CsvClientImpl
:
- Just use a Reader/Writer. In this case you can only use the row functionality of CSVeed, not the bean functionality
- Pass a Reader or Writer and point it to class. The
org.csveed.annotations
in the class are read, as is the order of the properties within the class. - Pass a Reader or Writer and roll your own instructions. Pass a
BeanInstructions
implementation with your own configuration settings
-
Method Summary
Modifier and TypeMethodDescriptionint
Returns the line from which the row was read.ignoreProperty
(String propertyName) Sets a field to be ignored for purposes of mapping.boolean
States whether the Reader is done with the file.mapColumnIndexToProperty
(int columnIndex, String propertyName) Maps a column in the CSV to a specific property.mapColumnNameToProperty
(String columnName, String propertyName) Maps a column name (which is found in the header) to a specific property.readBean()
Reads a single row and returns this as a bean.Reads all rows from the file and return these as beans.Returns the header of the CSV file.readRow()
Reads a single row from the file and returns this.readRows()
Reads all rows from the file and returns them as a List.setComment
(char symbol) Sets the character that will be interpreted as a comment field on the first position of a row.setConverter
(String propertyName, Converter converter) Sets a customPropertyEditor
for the property.Determines what dateformat to apply to the cell value before storing it as a date.setEndOfLine
(char[] symbols) Sets the characters (plural) that will be interpreted as end-of-line markers (unless within a quoted field).setEscape
(char symbol) Sets the character that will be interpreted as an escape symbol while within a quoted field.setHeaderNameToProperty
(String propertyName) Determines what property will receive the header name in the currently active dynamic column.setHeaderValueToProperty
(String propertyName) Determines what property will receive the cell value in the currently active dynamic column.setLocalizedNumber
(String propertyName, Locale locale) Determines what Locale to apply to the cell value before converting it to a number.setMapper
(Class<? extends AbstractMapper> mapper) Determines which mapping strategy is to be employed for mapping cells to bean properties.setQuote
(char symbol) Sets the character that will be interpreted as a quote symbol, signifying either the start or the end of a quoted field.setRequired
(String propertyName, boolean required) Determines if the field is required.setSeparator
(char symbol) Sets the character that will be interpreted as a separator between cells.setStartIndexDynamicColumns
(int startIndex) A file can have a special layout with a dynamic number of columns.setStartRow
(int startRow) Sets the start row of the CSV file.setUseHeader
(boolean useHeader) Makes sure that the first readable line is interpreted as the header line.skipCommentLines
(boolean skip) Determines whether comment lines must be skipped.skipEmptyLines
(boolean skip) Determines whether empty lines must be skipped or treated as single-column rows.void
Writes a single Bean to the table.void
writeBeans
(Collection<T> beans) Writes a collection of Beans to the table.void
Writes a header based on the bean properties to the table.writeHeader
(String[] header) Writes the header to the table.void
writeHeader
(Header header) Writes the header to the table.Writes a single row (consisting of String cells) to the table.void
Writes a single row to the table.void
Writes a two-dimensional array of cells (rows with cells) to the table.void
writeRows
(Collection<Row> rows) Writes a collection of rows to the table.
-
Method Details
-
writeBeans
Writes a collection of Beans to the table.- Parameters:
beans
- beans to write to the table
-
writeBean
Writes a single Bean to the table.- Parameters:
bean
- bean to write to the table
-
writeRow
-
writeRow
-
writeRows
Writes a collection of rows to the table.- Parameters:
rows
- collections of rows
-
writeRows
Writes a two-dimensional array of cells (rows with cells) to the table.- Parameters:
rows
- two-dimensional array of cells
-
writeHeader
-
writeHeader
-
writeHeader
void writeHeader()Writes a header based on the bean properties to the table. -
readBeans
-
readBean
T readBean()Reads a single row and returns this as a bean. The RowReader will keep track of its state.- Returns:
- Bean read from the Reader
-
readRows
-
readRow
Row readRow()Reads a single row from the file and returns this. The RowReader will keep track of its state.- Returns:
- Row read from the Reader
-
readHeader
Header readHeader()Returns the header of the CSV file. Only possibly returns a value when useHeader==true- Returns:
- header or null if the useHeader==false
-
getCurrentLine
int getCurrentLine()Returns the line from which the row was read. Note that a line is seen as a legitimate CSV row, not necessarily a printable line (unless multi-lines are used, these values are the same).- Returns:
- current line number
-
isFinished
boolean isFinished()States whether the Reader is done with the file.- Returns:
- true if file is finished
-
setUseHeader
Makes sure that the first readable line is interpreted as the header line. That line will not be read as content. This method is called wheneverCsvFile.useHeader()
is used. The default value for this setting is true. This call is a facade forRowInstructions.setUseHeader(boolean)
.- Parameters:
useHeader
- true if the header is interpreted and used- Returns:
- convenience for chaining
-
setStartRow
Sets the start row of the CSV file. IfsetUseHeader(boolean)
== true, this will be the header row and the next ones are all content rows. This method is called wheneverCsvFile.startRow()
is used. The default value for this setting is 1. This call is a facade forRowInstructions.setStartRow(int)
.- Parameters:
startRow
- the first row to start reading, including the header row- Returns:
- convenience for chaining
-
setEscape
Sets the character that will be interpreted as an escape symbol while within a quoted field. This method is called wheneverCsvFile.escape()
is used. The default value for this setting is a double quote (") symbol. This call is a facade forRowInstructions.setEscape(char)
.- Parameters:
symbol
- the symbol to use for escaping characters within a quoted field- Returns:
- convenience for chaining
-
setQuote
Sets the character that will be interpreted as a quote symbol, signifying either the start or the end of a quoted field. This method is called wheneverCsvFile.quote()
is used. The default value for this setting is a double quote (") symbol. This call is a facade forRowInstructions.setQuote(char)
.- Parameters:
symbol
- the symbol to use for indicating start/end of a quoted field- Returns:
- convenience for chaining
-
setSeparator
Sets the character that will be interpreted as a separator between cells. This method is called wheneverCsvFile.separator()
is used. The default value for this setting is a semi-colon (;). This call is a facade forRowInstructions.setSeparator(char)
.- Parameters:
symbol
- the symbol to use as a separator between cells- Returns:
- convenience for chaining
-
setComment
Sets the character that will be interpreted as a comment field on the first position of a row. This method is called wheneverCsvFile.comment()
is used. The default value for this setting is a hashtag (#).- Parameters:
symbol
- the symbol to use as the 0-position comment marker- Returns:
- convenience for chaining
-
setEndOfLine
Sets the characters (plural) that will be interpreted as end-of-line markers (unless within a quoted field). This method is called wheneverCsvFile.endOfLine()
is used. The default values for this setting are \r and \n. This call is a facade forRowInstructions.setEndOfLine(char[])
.- Parameters:
symbols
- the symbol to interpret as end-of-line markers (unless within a quoted field)- Returns:
- convenience for chaining
-
skipEmptyLines
Determines whether empty lines must be skipped or treated as single-column rows. This method is called wheneverCsvFile.skipEmptyLines()
is used. The default value for this setting is to skip the empty lines.- Parameters:
skip
- true to skip empty lines, false to treat as single-column rows- Returns:
- convenience for chaining
-
skipCommentLines
Determines whether comment lines must be skipped. This method is called wheneverCsvFile.skipCommentLines()
is used. The default value for this setting is to skip comment lines. This method exists to guarantee that lines are not accidentally treated as comment lines.- Parameters:
skip
- true to skip comment lines, identified as starting with a comment marker- Returns:
- convenience for chaining
-
setStartIndexDynamicColumns
A file can have a special layout with a dynamic number of columns. If the intention is to duplicate rows for every separate column, this is the method you require. It will remember the start position of the dynamic columns and treat every column after that as dynamic. For every dynamic column a row will be created. If a bean has fields annotated with @CsvHeaderName or @CsvHeaderValue, it will store the values of the header or the cell for that index column in the fields.- Parameters:
startIndex
- the index where the dynamic columns start- Returns:
- convenience for chaining
-
setMapper
Determines which mapping strategy is to be employed for mapping cells to bean properties. This method is called wheneverCsvFile.mappingStrategy()
is used. The default mapping strategy isColumnIndexMapper
, which looks at either the position of a property within the class or the custom index ifCsvCell.columnIndex()
ormapColumnIndexToProperty(int, String)
has been set.- Parameters:
mapper
- the mapping strategy to employ for mapping cells to bean properties- Returns:
- convenience for chaining
-
setDate
Determines what dateformat to apply to the cell value before storing it as a date. This method is called wheneverCsvDate
is used. The default for date format is dd-MM-yyyy.- Parameters:
propertyName
- the name of the property to write the date todateFormat
- the date format to apply for parsing the date value- Returns:
- convenience for chaining
-
setLocalizedNumber
Determines what Locale to apply to the cell value before converting it to a number. This method is called wheneverCsvLocalizedNumber
is used. The default for Locale is the Locale of the server.- Parameters:
propertyName
- the name of the property to write the data tolocale
- the Locale to apply for converting the number- Returns:
- convenience for chaining
-
setRequired
Determines if the field is required. If so, the cell may not be empty and aCsvException
will be thrown if this occurs. This method is called wheneverCsvCell.required()
is used. The default for a property is false.- Parameters:
propertyName
- property for which the requirement appliesrequired
- whether the cell must be not-null- Returns:
- convenience for chaining
-
setConverter
Sets a customPropertyEditor
for the property. This PropertyEditor is called to convert the text to the type of the property and set it on the bean. This method is called wheneverCsvConverter.converter()
is used. The default for a property is based on the wonderful set of PropertyEditors that Spring offers, which is all basics and some extras as well.- Parameters:
propertyName
- property to which the converter must be appliedconverter
- PropertyEditor to apply to the property- Returns:
- convenience for chaining
-
ignoreProperty
Sets a field to be ignored for purposes of mapping. This method is called wheneverCsvIgnore
is used. By default none of the fields are ignored unless, custom instructions are used. In this case, all fields are ignored by default.- Parameters:
propertyName
- property which must be ignored for mapping- Returns:
- convenience for chaining
-
mapColumnIndexToProperty
Maps a column in the CSV to a specific property. This method is called wheneverCsvCell.columnIndex()
is used. By default there is NO mapping when custom instructions are used, so you should roll your own. Note that column indexes are 1-based, not 0-based.- Parameters:
columnIndex
- index of the column for which the property mapping must be appliedpropertyName
- property to which the index-based mapping must be applied- Returns:
- convenience for chaining
-
mapColumnNameToProperty
Maps a column name (which is found in the header) to a specific property. Note that to use this, headers must be enabled. This method is called wheneverCsvCell.columnName()
is used. By default there is NO mapping when custom instructions are used, so you should roll your own. Also, don't forget tosetMapper(Class)
toColumnNameMapper
for this to work.- Parameters:
columnName
- name of the column for which the property mapping must be appliedpropertyName
- property to which the name-based mapping must be applied- Returns:
- convenience for chaining
-
setHeaderNameToProperty
-
setHeaderValueToProperty
-