fixed the imports of the new validation classes

This commit is contained in:
Andreas Billmann
2016-09-18 15:18:48 +02:00
parent d689423c61
commit 5e31f834ac
6 changed files with 9 additions and 9 deletions

View File

@@ -32,7 +32,7 @@ import ninja.javafx.smartcsv.validation.ValidationError;
*/
public interface Validation {
enum Type { NOT_EMPTY, UNIQUE, DOUBLE, INTEGER, MIN_LENGTH, MAX_LENGTH, DATE, REGEXP, VALUE_OF, EMAIL, UUID, URI, BINARY, GROOVY }
enum Type { NOT_EMPTY, UNIQUE, DOUBLE, INTEGER, MIN_LENGTH, MAX_LENGTH, DATE, REGEXP, VALUE_OF, STRING, GROOVY }
void check(int row, String value, ValidationError error);
Type getType();
boolean canBeChecked(String value);