me.excel.tools.validator.sheet.SheetValidator 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.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