org.holmes.Validator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of holmes-validation Show documentation
Show all versions of holmes-validation Show documentation
Holmes is a library that provides a simple and fluent API for writing business rules validations on Java projects.
The newest version!
package org.holmes;
/**
* Validators give more flexibility to the validation process. This provides
* extensibility to the framework, once the user can write his own specific
* validator.
*
* @author diegossilveira
*
* @param
* the type this validator validates.
*/
public interface Validator {
boolean isValid(T target);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy