All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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