com.fenghongzhang.common.StringUtil Maven / Gradle / Ivy
The newest version!
package com.fenghongzhang.common;
/**
* String
* @author fenghongzhang
*
*/
public class StringUtil {
/**
**isEmpty
* @param str String
* @return boolean
*/
public static boolean isEmpty(String str) {
if(str != null &&str.trim().equals("")) {
return true;
}
return false;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy