Package | Description |
---|---|
com.univocity.parsers.common | |
com.univocity.parsers.common.input | |
com.univocity.parsers.csv |
Modifier and Type | Field and Description |
---|---|
private java.util.List<InputAnalysisProcess> |
CommonParserSettings.inputAnalysisProcesses |
Modifier and Type | Method and Description |
---|---|
protected InputAnalysisProcess |
AbstractParser.getInputAnalysisProcess()
Allows the parser implementation to traverse the input buffer before the parsing process starts, in order to enable automatic configuration and discovery
of data formats.
|
Modifier and Type | Method and Description |
---|---|
java.util.List<InputAnalysisProcess> |
CommonParserSettings.getInputAnalysisProcesses()
Returns the sequence of
InputAnalysisProcess to be used for analyzing the input buffer and potentially discover configuration options such as
column separators is CSV, data formats, etc. |
Modifier and Type | Method and Description |
---|---|
void |
CommonParserSettings.addInputAnalysisProcess(InputAnalysisProcess inputAnalysisProcess)
Provides a custom
InputAnalysisProcess to analyze the input buffer and potentially discover configuration options such as
column separators is CSV, data formats, etc. |
Modifier and Type | Class and Description |
---|---|
class |
LineSeparatorDetector
An
InputAnalysisProcess to detect the line separators used in the input. |
Modifier and Type | Field and Description |
---|---|
private java.util.List<InputAnalysisProcess> |
AbstractCharInputReader.inputAnalysisProcesses |
Modifier and Type | Method and Description |
---|---|
void |
AbstractCharInputReader.addInputAnalysisProcess(InputAnalysisProcess inputAnalysisProcess)
Submits a custom
InputAnalysisProcess to analyze the input buffer and potentially discover configuration options such as
column separators is CSV, data formats, etc. |
Modifier and Type | Class and Description |
---|---|
class |
CsvFormatDetector
An
InputAnalysisProcess to detect column delimiters, quotes and quote escapes in a CSV input. |
Modifier and Type | Method and Description |
---|---|
protected InputAnalysisProcess |
CsvParser.getInputAnalysisProcess() |