me.excel.tools.validator.cell.CellValidatorAdapter 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.cell;
import me.excel.tools.model.excel.ExcelCell;
import org.apache.commons.lang3.StringUtils;
/**
*
* cell value validator adapter, easy implements customer value validator extends this.
* extends this validator will skip valid when cell value is blank.
*
* Created by hanwen on 15-12-16.
*/
public abstract class CellValidatorAdapter implements CellValidator {
private String matchField;
private String errorMessage;
public CellValidatorAdapter(String matchField, String errorMessage) {
this.matchField = matchField;
this.errorMessage = errorMessage;
}
@Override
public String getErrorMessage() {
return errorMessage;
}
@Override
public boolean validate(ExcelCell excelCell) {
return StringUtils.isBlank(excelCell.getValue()) || customValidate(excelCell);
}
@Override
public boolean matches(String field) {
return field.equals(matchField);
}
/**
* for customer access errorMessage
*
* @param errorMessage error message
*/
protected void setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
}
protected final String getMatchField() {
return matchField;
}
protected abstract boolean customValidate(ExcelCell excelCell);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy