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 com.univocity.parsers.common.routine -
-
Uses of RowProcessor in com.univocity.parsers.common
Methods in com.univocity.parsers.common that return RowProcessor Modifier and Type Method Description RowProcessor
CommonParserSettings. 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 void
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 RowProcessor Modifier and Type Class Description class
AbstractRowProcessor
ARowProcessor
implementation that just implements all methods defined by the interface.class
BatchedColumnProcessor
ARowProcessor
implementation that stores values of columns in batches.class
BatchedObjectColumnProcessor
ARowProcessor
implementation for converting batches of rows extracted from any implementation ofAbstractParser
into columns of objects.class
BeanListProcessor<T>
A convenienceBeanProcessor
implementation for storing all java objects generated form the parsed input into a list.class
BeanProcessor<T>
ARowProcessor
implementation for converting rows extracted from any implementation ofAbstractParser
into java objects.class
ColumnProcessor
A simpleRowProcessor
implementation that stores values of columns.class
CompositeRowProcessor
A utilityRowProcessor
implementation that facilitates using multiple implementations ofRowProcessor
at the same time.class
ConcurrentRowProcessor
ARowProcessor
implementation to perform row processing tasks in parallel.class
InputValueSwitch
A concrete implementation ofRowProcessorSwitch
that allows switching among different implementations ofRowProcessor
based on values found on the rows parsed from the input.class
MasterDetailListProcessor
A convenienceMasterDetailProcessor
implementation for storing allMasterDetailRecord
generated form the parsed input into a list.class
MultiBeanListProcessor
ARowProcessor
implementation for converting rows extracted from any implementation ofAbstractParser
into java objects, storing them into lists.class
MultiBeanProcessor
ARowProcessor
implementation for converting rows extracted from any implementation ofAbstractParser
into java objects.class
MultiBeanRowProcessor
ARowProcessor
implementation for converting rows extracted from any implementation ofAbstractParser
into java objects.class
NoopRowProcessor
A singleton instance of aRowProcessor
that does nothing.class
ObjectColumnProcessor
ARowProcessor
implementation for converting rows extracted from any implementation ofAbstractParser
into columns of objects.class
ObjectRowListProcessor
A convenienceRowProcessor
implementation for storing all rows parsed and converted to Object arrays into a list.class
ObjectRowProcessor
ARowProcessor
implementation for converting rows extracted from any implementation ofAbstractParser
into arrays of objects.class
RowListProcessor
A convenienceRowProcessor
implementation for storing all rows parsed into a list.class
RowProcessorSwitch
A specialRowProcessor
implementation that combines and allows switching among different RowProcessors.Fields in com.univocity.parsers.common.processor declared as RowProcessor Modifier and Type Field Description static RowProcessor
NoopRowProcessor. instance
The singleton instance of the no-opRowProcessor
Constructors 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 void
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 RowProcessor Modifier and Type Method Description private RowProcessor
AbstractRoutines. createWritingRowProcessor(java.io.Writer output)
Methods in com.univocity.parsers.common.routine with parameters of type RowProcessor Modifier and Type Method Description private void
AbstractRoutines. setRowProcessor(RowProcessor rowProcessor)
-