mirror of
https://github.com/frosch95/SmartCSV.fx.git
synced 2026-04-11 13:38:23 +02:00
13 lines
323 B
Java
13 lines
323 B
Java
package ninja.javafx.smartcsv.validation.checker;
|
|
|
|
/**
|
|
* validations based on this are not validated when the value is null or empty
|
|
*/
|
|
public abstract class EmptyValueIsValid implements Validation {
|
|
|
|
@Override
|
|
public boolean canBeChecked(String value) {
|
|
return value != null && !value.isEmpty();
|
|
}
|
|
}
|