me.excel.tools.processor.DataProcessor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-excel-tools Show documentation
Show all versions of java-excel-tools Show documentation
powerful and convenient excel tools
The newest version!
package me.excel.tools.processor;
import java.util.List;
/**
* processor model data after transfer from excel
*
* Created by hanwen on 15-12-16.
*/
public interface DataProcessor {
/**
* before processing set value
*
* @param origin value not set
*/
void preProcessing(Object origin);
/**
* after processing set value
*
* @param model value set
*/
void postProcessing(Object model);
/**
* handle value set model list
*
* @param models value set model list
*/
void handle(List models);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy