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

com.github.jingshouyan.jdbc.comm.util.StringUtil Maven / Gradle / Ivy

package com.github.jingshouyan.jdbc.comm.util;

/**
 * @author jingshouyan
 * 11/28/18 4:18 PM
 */
public class StringUtil {
    public static boolean isNullOrEmpty(String str) {
        return str == null || "".equals(str);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy