Deprecated API


Contents
Deprecated Classes
com.univocity.parsers.fixed.FixedWidthFieldLengths
          This class has been modified over time and its name became misleading. Use FixedWidthFields instead. 
 

Deprecated Methods
com.univocity.parsers.fixed.FixedWidthWriterSettings.clone(boolean)
          doesn't really make sense for fixed-width. . Use alternative method FixedWidthWriterSettings.clone(FixedWidthFields). 
com.univocity.parsers.fixed.FixedWidthParserSettings.clone(boolean)
          doesn't really make sense for fixed-width. Use alternative method FixedWidthParserSettings.clone(FixedWidthFields). 
com.univocity.parsers.common.CommonParserSettings.getRowProcessor()
          Use the CommonParserSettings.getProcessor() method as it allows format-specific processors to be built to work with different implementations of Context. Implementations based on RowProcessor allow only parsers who provide a ParsingContext to be used. 
com.univocity.parsers.common.CommonSettings.getRowProcessorErrorHandler()
          Use the CommonSettings.getProcessorErrorHandler() method as it allows format-specific error handlers to be built to work with different implementations of Context. Implementations based on RowProcessorErrorHandler allow only parsers who provide a ParsingContext to be used. 
com.univocity.parsers.csv.CsvParserSettings.isParseUnescapedQuotes()
          use CsvParserSettings.getUnescapedQuoteHandling() instead. The configuration returned by CsvParserSettings.getUnescapedQuoteHandling() will override this setting if not null. 
com.univocity.parsers.csv.CsvParserSettings.isParseUnescapedQuotesUntilDelimiter()
          use CsvParserSettings.getUnescapedQuoteHandling() instead. The configuration returned by CsvParserSettings.getUnescapedQuoteHandling() will override this setting if not null. 
com.univocity.parsers.csv.CsvParserSettings.setParseUnescapedQuotes(boolean)
          use CsvParserSettings.setUnescapedQuoteHandling(UnescapedQuoteHandling) instead. The configuration returned by CsvParserSettings.getUnescapedQuoteHandling() will override this setting if not null. 
com.univocity.parsers.csv.CsvParserSettings.setParseUnescapedQuotesUntilDelimiter(boolean)
          use CsvParserSettings.setUnescapedQuoteHandling(UnescapedQuoteHandling) instead. The configuration returned by CsvParserSettings.getUnescapedQuoteHandling() will override this setting if not null. 
com.univocity.parsers.common.CommonParserSettings.setRowProcessor(RowProcessor)
          Use the CommonParserSettings.setProcessor(Processor) method as it allows format-specific processors to be built to work with different implementations of Context. Implementations based on RowProcessor allow only parsers who provide a ParsingContext to be used. 
com.univocity.parsers.common.CommonSettings.setRowProcessorErrorHandler(RowProcessorErrorHandler)
          Use the CommonSettings.setProcessorErrorHandler(ProcessorErrorHandler) method as it allows format-specific error handlers to be built to work with different implementations of Context. Implementations based on RowProcessorErrorHandler allow only parsers who provide a ParsingContext to be used. 
 

Deprecated Constructors
com.univocity.parsers.common.processor.core.BeanConversionProcessor(Class)
          Use the BeanConversionProcessor.BeanConversionProcessor(Class, MethodFilter) constructor instead. 
com.univocity.parsers.fixed.FixedWidthFields(Class)
          use FixedWidthFields.forParsing(Class) and FixedWidthFields.forWriting(Class) to initialize the fields from the given class and filter out getters and setters that target the same field. If the given class has any annotated methods only the setters will be used, making it usable only for parsing. 
 



Copyright © 2017 uniVocity Software Pty Ltd. All rights reserved.