com.dahuatech.icc.util.StringUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk-common Show documentation
Show all versions of java-sdk-common Show documentation
Dahua ICC Open API SDK for Java
package com.dahuatech.icc.util;
/**
* 判断字符串工具类
*/
public class StringUtils {
public static boolean isEmpty(String str){
if(str == null || str.length() == 0){
return true;
}
return false;
}
}