![JAR search and dependency download from the Maven repository](/logo.png)
net.weweave.commerce.GenericValidator Maven / Gradle / Ivy
package net.weweave.commerce;
public class GenericValidator {
public static boolean isBlankOrNull(String s) {
if (s == null) {
return true;
}
if (s.trim().equals("")) {
return true;
}
return false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy