Uses of Interface
com.univocity.parsers.common.processor.RowProcessor
Packages that use RowProcessor
Package
Description
-
Uses of RowProcessor in com.univocity.parsers.common
Methods in com.univocity.parsers.common that return RowProcessorMethods in com.univocity.parsers.common with parameters of type RowProcessorModifier and TypeMethodDescriptionvoid
CommonParserSettings.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 RowProcessorModifier and TypeClassDescriptionclass
ARowProcessor
implementation that just implements all methods defined by the interface.class
ARowProcessor
implementation that stores values of columns in batches.class
ARowProcessor
implementation for converting batches of rows extracted from any implementation ofAbstractParser
into columns of objects.class
A convenienceBeanProcessor
implementation for storing all java objects generated form the parsed input into a list.class
ARowProcessor
implementation for converting rows extracted from any implementation ofAbstractParser
into java objects.class
A simpleRowProcessor
implementation that stores values of columns.class
A utilityRowProcessor
implementation that facilitates using multiple implementations ofRowProcessor
at the same time.class
ARowProcessor
implementation to perform row processing tasks in parallel.class
A concrete implementation ofRowProcessorSwitch
that allows switching among different implementations ofRowProcessor
based on values found on the rows parsed from the input.class
A convenienceMasterDetailProcessor
implementation for storing allMasterDetailRecord
generated form the parsed input into a list.class
ARowProcessor
implementation for converting rows extracted from any implementation ofAbstractParser
into java objects, storing them into lists.class
ARowProcessor
implementation for converting rows extracted from any implementation ofAbstractParser
into java objects.class
ARowProcessor
implementation for converting rows extracted from any implementation ofAbstractParser
into java objects.final class
A singleton instance of aRowProcessor
that does nothing.class
ARowProcessor
implementation for converting rows extracted from any implementation ofAbstractParser
into columns of objects.class
A convenienceRowProcessor
implementation for storing all rows parsed and converted to Object arrays into a list.class
ARowProcessor
implementation for converting rows extracted from any implementation ofAbstractParser
into arrays of objects.class
A convenienceRowProcessor
implementation for storing all rows parsed into a list.class
A specialRowProcessor
implementation that combines and allows switching among different RowProcessors.Fields in com.univocity.parsers.common.processor declared as RowProcessorModifier and TypeFieldDescriptionstatic final RowProcessor
NoopRowProcessor.instance
The singleton instance of the no-opRowProcessor
Constructors in com.univocity.parsers.common.processor with parameters of type RowProcessorModifierConstructorDescriptionConcurrentRowProcessor
(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 RowProcessorModifier and TypeMethodDescriptionvoid
AbstractProcessorSwitch.rowProcessorSwitched
(RowProcessor from, RowProcessor to) Notifies a change ofRowProcessor
implementation. -
Uses of RowProcessor in com.univocity.parsers.common.routine
Methods in com.univocity.parsers.common.routine that return RowProcessorModifier and TypeMethodDescriptionprivate RowProcessor
AbstractRoutines.createWritingRowProcessor
(Writer output) Methods in com.univocity.parsers.common.routine with parameters of type RowProcessorModifier and TypeMethodDescriptionprivate void
AbstractRoutines.setRowProcessor
(RowProcessor rowProcessor)
CommonParserSettings.getProcessor()
method as it allows format-specific processors to be built to work with different implementations ofContext
.