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

org.openhealthtools.ihe.utils.StringUtils Maven / Gradle / Ivy

There is a newer version: 3.6-20170926
Show newest version
package org.openhealthtools.ihe.utils;

public class StringUtils 
{
	public static final String EMPTY_STRING = "";
	
	public static boolean isEmptyOrNull(String str)
	{
		return (null == str || EMPTY_STRING.equals(str));
	}
	                                               
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy