edu.isi.nlp.validators.IsPositive Maven / Gradle / Ivy
The newest version!
package edu.isi.nlp.validators;
public final class IsPositive implements Validator {
@Override
public void validate(T n) throws ValidationException {
if (n.doubleValue() <= 0.0d) {
throw new ValidationException(String.format("%s is not positive", n));
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy