All Downloads are FREE. Search and download functionalities are using the official Maven repository.

me.excel.tools.validator.sheet.SheetValidator Maven / Gradle / Ivy

The newest version!
package me.excel.tools.validator.sheet;

import me.excel.tools.model.excel.ExcelCell;
import me.excel.tools.model.excel.ExcelSheet;

import java.util.List;

/**
 * excel sheet validator, after workbook validators, if workbook validators failure, sheet validators will skip.
 * 

* Created by hanwen on 2016/12/23. */ public interface SheetValidator { /** * @return error message */ String getErrorMessage(); /** * @param excelSheet sheet * @return message on which cells */ List getMessageOnCells(ExcelSheet excelSheet); /** * validate supplied excel sheet * * @param excelSheet sheet * @return success */ boolean validate(ExcelSheet excelSheet); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy