Uses of Interface
com.univocity.parsers.common.input.CharAppender
-
Packages that use CharAppender Package Description com.univocity.parsers.common com.univocity.parsers.common.input com.univocity.parsers.csv com.univocity.parsers.fixed -
-
Uses of CharAppender in com.univocity.parsers.common
Fields in com.univocity.parsers.common declared as CharAppender Modifier and Type Field Description CharAppenderParserOutput. appenderThe appender available to parsers for accumulating characters read from the input.private CharAppenderParserOutput. appenderInstanceprivate CharAppender[]ParserOutput. appendersStores (shared) references toCharAppenderfor each potential column (as given byCommonSettings.getMaxColumns()).Methods in com.univocity.parsers.common that return CharAppender Modifier and Type Method Description protected CharAppenderCommonParserSettings. 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) -
Uses of CharAppender in com.univocity.parsers.common.input
Classes in com.univocity.parsers.common.input that implement CharAppender Modifier and Type Class Description classDefaultCharAppenderDefault implementation of theCharAppenderinterfaceclassExpandingCharAppenderAn implementationCharAppenderthat expands the internal buffer of characters as required.classNoopCharAppenderAn implementation ofCharAppenderthat does nothing.classWriterCharAppenderExtension of theDefaultCharAppenderclass to include facilities for writing to an output.Methods in com.univocity.parsers.common.input that return CharAppender Modifier and Type Method Description static CharAppenderNoopCharAppender. getInstance()Returns the singleton instance of NoopCharAppender -
Uses of CharAppender in com.univocity.parsers.csv
Methods in com.univocity.parsers.csv that return CharAppender Modifier and Type Method Description protected CharAppenderCsvParserSettings. 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) -
Uses of CharAppender in com.univocity.parsers.fixed
Methods in com.univocity.parsers.fixed that return CharAppender Modifier and Type Method Description protected CharAppenderFixedWidthParserSettings. 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
-