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

org.sql.assistant.util.StrUtil Maven / Gradle / Ivy

package org.sql.assistant.util;

/**
 * 字符串工具类
 *
 * @author menfre
 */
public class StrUtil {
    public static boolean isNotEmpty(String str) {
        return str != null && str.length() > 0;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy