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

io.itit.StringUtil Maven / Gradle / Ivy

package io.itit;

/**
 * 
 * @author skydu
 *
 */
public class StringUtil {

	/**
	 * 
	 * @param input
	 * @return
	 */
	public static boolean isEmpty(String input){
		if(input==null||input.length()==0){
			return true;
		}
		return false;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy