com.univocity.parsers.common.processor.BeanProcessor Maven / Gradle / Ivy
Show all versions of univocity-parsers Show documentation
/*******************************************************************************
* Copyright 2014 uniVocity Software Pty Ltd
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
******************************************************************************/
package com.univocity.parsers.common.processor;
import com.univocity.parsers.common.*;
import com.univocity.parsers.common.processor.core.*;
/**
*
* A {@link RowProcessor} implementation for converting rows extracted from any implementation of {@link AbstractParser} into java objects.
* The class type of the object must contain the annotations provided in {@link com.univocity.parsers.annotations}.
*
*
For each row processed, a java bean instance of a given class will be created with its fields populated.
*
This instance will then be sent to the {@link BeanProcessor#beanProcessed(Object, Context)} method, where the user can access it.
*
* @see AbstractParser
* @see RowProcessor
* @see AbstractBeanProcessor
*
* @param the annotated class type.
*
* @author uniVocity Software Pty Ltd - [email protected]
*
*/
public abstract class BeanProcessor extends AbstractBeanProcessor implements RowProcessor{
/**
* Creates a processor for java beans of a given type.
* @param beanType the class with its attributes mapped to fields of records parsed by an {@link AbstractParser} or written by an {@link AbstractWriter}.
*/
public BeanProcessor(Class beanType) {
super(beanType);
}
}