![JAR search and dependency download from the Maven repository](/logo.png)
me.excel.tools.validator.row.RowValidator 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.row;
import me.excel.tools.model.excel.ExcelCell;
import me.excel.tools.model.excel.ExcelRow;
import java.util.List;
/**
* excel row values validator, after sheet validators, if sheet validators failure, row validators will skip.
*
* Created by hanwen on 4/26/16.
*/
public interface RowValidator {
/**
* @return validate error message
*/
String getErrorMessage();
/**
* @param excelRow row
* @return message on which cells
*/
List getMessageOnCells(ExcelRow excelRow);
/**
* validate supplied excel row
*
* @param excelRow row
* @return success
*/
boolean validate(ExcelRow excelRow);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy