edu.isi.nlp.validators.IsFile Maven / Gradle / Ivy
The newest version!
package edu.isi.nlp.validators;
import java.io.File;
public class IsFile implements Validator {
@Override
public void validate(File arg) throws ValidationException {
if (!arg.isFile()) {
throw new ValidationException(
String.format("%s either does not exist or is not a file", arg.getAbsolutePath()));
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy