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

com.dahuatech.icc.util.StringUtils Maven / Gradle / Ivy

There is a newer version: 1.0.13.7
Show newest version
package com.dahuatech.icc.util;

/**
 * 判断字符串工具类
 */
public class StringUtils {

    public static boolean isEmpty(String str){
        if(str == null || str.length() == 0){
            return true;
        }
        return false;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy