Package | Description |
---|---|
com.univocity.parsers.common | |
com.univocity.parsers.common.input | |
com.univocity.parsers.csv | |
com.univocity.parsers.fixed |
Modifier and Type | Field and Description |
---|---|
CharAppender |
ParserOutput.appender
The appender available to parsers for accumulating characters read from the input.
|
private CharAppender |
ParserOutput.appenderInstance |
private CharAppender[] |
ParserOutput.appenders
Stores (shared) references to
CharAppender for each potential column (as given by CommonSettings.getMaxColumns() ). |
Modifier and Type | Method and Description |
---|---|
protected CharAppender |
CommonParserSettings.newCharAppender()
Returns an instance of CharAppender with the configured limit of maximum characters per column and the default value used to represent a null value (when the String parsed from the input is empty)
|
Modifier and Type | Class and Description |
---|---|
class |
DefaultCharAppender
Default implementation of the
CharAppender interface |
class |
ExpandingCharAppender
An implementation
CharAppender that expands the internal buffer of characters as required. |
class |
NoopCharAppender
An implementation of
CharAppender that does nothing. |
class |
WriterCharAppender
Extension of the
DefaultCharAppender class to include facilities for writing to an output. |
Modifier and Type | Method and Description |
---|---|
static CharAppender |
NoopCharAppender.getInstance()
Returns the singleton instance of NoopCharAppender
|
Modifier and Type | Method and Description |
---|---|
protected CharAppender |
CsvParserSettings.newCharAppender()
Returns an instance of CharAppender with the configured limit of maximum characters per column and the default value used to represent an empty value (when the String parsed from the input, within quotes, is empty)
|
Modifier and Type | Method and Description |
---|---|
protected CharAppender |
FixedWidthParserSettings.newCharAppender()
Returns an instance of CharAppender with the configured limit of maximum characters per column and, default value used to represent a null value (when the String parsed from the input is empty), and the padding character to handle unwritten positions
|