Uses of Interface
com.univocity.parsers.common.processor.RowProcessor
-
Packages that use RowProcessor Package Description com.univocity.parsers.common com.univocity.parsers.common.processor com.univocity.parsers.common.processor.core -
-
Uses of RowProcessor in com.univocity.parsers.common
Methods in com.univocity.parsers.common that return RowProcessor Modifier and Type Method Description RowProcessorCommonParserSettings. getRowProcessor()Deprecated.Use theCommonParserSettings.getProcessor()method as it allows format-specific processors to be built to work with different implementations ofContext.Methods in com.univocity.parsers.common with parameters of type RowProcessor Modifier and Type Method Description voidCommonParserSettings. setRowProcessor(RowProcessor processor)Deprecated.Use theCommonParserSettings.setProcessor(Processor)method as it allows format-specific processors to be built to work with different implementations ofContext. -
Uses of RowProcessor in com.univocity.parsers.common.processor
Classes in com.univocity.parsers.common.processor that implement RowProcessor Modifier and Type Class Description classAbstractRowProcessorARowProcessorimplementation that just implements all methods defined by the interface.classBatchedColumnProcessorARowProcessorimplementation that stores values of columns in batches.classBatchedObjectColumnProcessorARowProcessorimplementation for converting batches of rows extracted from any implementation ofAbstractParserinto columns of objects.classBeanListProcessor<T>A convenienceBeanProcessorimplementation for storing all java objects generated form the parsed input into a list.classBeanProcessor<T>ARowProcessorimplementation for converting rows extracted from any implementation ofAbstractParserinto java objects.classColumnProcessorA simpleRowProcessorimplementation that stores values of columns.classCompositeRowProcessorA utilityRowProcessorimplementation that facilitates using multiple implementations ofRowProcessorat the same time.classConcurrentRowProcessorARowProcessorimplementation to perform row processing tasks in parallel.classInputValueSwitchA concrete implementation ofRowProcessorSwitchthat allows switching among different implementations ofRowProcessorbased on values found on the rows parsed from the input.classMasterDetailListProcessorA convenienceMasterDetailProcessorimplementation for storing allMasterDetailRecordgenerated form the parsed input into a list.classMultiBeanListProcessorARowProcessorimplementation for converting rows extracted from any implementation ofAbstractParserinto java objects, storing them into lists.classMultiBeanProcessorARowProcessorimplementation for converting rows extracted from any implementation ofAbstractParserinto java objects.classMultiBeanRowProcessorARowProcessorimplementation for converting rows extracted from any implementation ofAbstractParserinto java objects.classNoopRowProcessorA singleton instance of aRowProcessorthat does nothing.classObjectColumnProcessorARowProcessorimplementation for converting rows extracted from any implementation ofAbstractParserinto columns of objects.classObjectRowListProcessorA convenienceRowProcessorimplementation for storing all rows parsed and converted to Object arrays into a list.classObjectRowProcessorARowProcessorimplementation for converting rows extracted from any implementation ofAbstractParserinto arrays of objects.classRowListProcessorA convenienceRowProcessorimplementation for storing all rows parsed into a list.classRowProcessorSwitchA specialRowProcessorimplementation that combines and allows switching among different RowProcessors.Fields in com.univocity.parsers.common.processor declared as RowProcessor Modifier and Type Field Description static RowProcessorNoopRowProcessor. instanceThe singleton instance of the no-opRowProcessorConstructors in com.univocity.parsers.common.processor with parameters of type RowProcessor Constructor Description ConcurrentRowProcessor(RowProcessor rowProcessor)Creates a non-blockingConcurrentRowProcessor, to perform processing of rows parsed from the input in a separate thread.ConcurrentRowProcessor(RowProcessor rowProcessor, int limit)Creates a blockingConcurrentRowProcessor, to perform processing of rows parsed from the input in a separate thread. -
Uses of RowProcessor in com.univocity.parsers.common.processor.core
Methods in com.univocity.parsers.common.processor.core with parameters of type RowProcessor Modifier and Type Method Description voidAbstractProcessorSwitch. rowProcessorSwitched(RowProcessor from, RowProcessor to)Notifies a change ofRowProcessorimplementation.
-