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

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