public class CsvDataLoadOptions
Constructor Summary |
---|
CsvDataLoadOptions()
Initializes a new instance of this class with default options. |
CsvDataLoadOptions(booleanhasHeaders)
Initializes a new instance of this class with specifying whether CSV data contains column names at the first line. |
Property Getters/Setters Summary | ||
---|---|---|
char | getCommentChar() | |
void | setCommentChar(charvalue) | |
Gets or sets the character that is used to comment lines of CSV data. | ||
char | getDelimiter() | |
void | setDelimiter(charvalue) | |
Gets or sets the character to be used as a column delimiter. | ||
boolean | hasHeaders() | |
void | hasHeaders(booleanvalue) | |
Gets or sets a value indicating whether the first record of CSV data contains column names. | ||
char | getQuoteChar() | |
void | setQuoteChar(charvalue) | |
Gets or sets the character that is used to quote field values. |
public CsvDataLoadOptions()
public CsvDataLoadOptions(boolean hasHeaders)
public char getCommentChar() / public void setCommentChar(char value)
public char getDelimiter() / public void setDelimiter(char value)
public boolean hasHeaders() / public void hasHeaders(boolean value)
public char getQuoteChar() / public void setQuoteChar(char value)
The default value is '"' (quotation mark).
Double the character to place it into quoted text.