com.univocity.api.entity.html.processor.ObjectRowProcessor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of univocity-html-parser-api Show documentation
Show all versions of univocity-html-parser-api Show documentation
Univocity HTML Parser Public API
The newest version!
/*
* Copyright (c) 2013 Univocity Software Pty Ltd. All rights reserved.
* This file is subject to the terms and conditions defined in file
* 'LICENSE.txt', which is part of this source code package.
*/
package com.univocity.api.entity.html.processor;
import com.univocity.api.entity.html.*;
import com.univocity.parsers.common.*;
import com.univocity.parsers.common.processor.core.*;
import com.univocity.parsers.conversions.*;
/**
*
* A {@link RowProcessor} implementation for converting rows extracted by the {@link HtmlParser} into arrays of objects.
* This uses the value conversions provided by {@link Conversion} instances.
*
* For each row processed, a sequence of conversions will be executed and stored in an object array, at its original position.
* The row with the result of these conversions will then be sent to the {@link ObjectRowProcessor#rowProcessed(Object[], Context)} method, where the user can access it.
*
* @see HtmlParser
* @see RowProcessor
*
* @author Univocity Software Pty Ltd - [email protected]
*
*/
public abstract class ObjectRowProcessor extends AbstractObjectProcessor implements RowProcessor {
}