spreadsheet.mapper.w2o.validation.rule.SingleCellValidatorFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spreadsheet-mapper Show documentation
Show all versions of spreadsheet-mapper Show documentation
java mapping library between spreadsheet and object
The newest version!
package spreadsheet.mapper.w2o.validation.rule;
import spreadsheet.mapper.w2o.validation.validator.cell.SingleCellValidator;
/**
* factory to create single cell validator
*
* Created by hanwen on 2017/1/22.
*/
public interface SingleCellValidatorFactory extends DependencyValidatorFactory {
/**
* create single cell validator
*
* @param param {@link DependencyRuleParam}
* @param matchField {@link SingleCellValidator#getMatchField()}
* @return {@link SingleCellValidator}
*/
V create(DependencyRuleParam param, String matchField);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy