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

com.magician.route.commons.util.StringUtil Maven / Gradle / Ivy

The newest version!
package com.magician.route.commons.util;

/**
 * String utility
 * @author yuye
 *
 */
public class StringUtil {

	/**
	 * Convert the first letter of a string to lowercase
	 * @param str
	 * @return string
	 */
	public static String getFirstLowerCase(String str) {
		String str2 = str.substring(1);
		String str3 = str.substring(0,1);
		
		return str3.toLowerCase()+str2;
	}
	
	/**
	 * Check if a string is empty
	 * @param obj
	 * @return string
	 */
	public static boolean isNull(Object obj) {
		if (obj == null || obj.toString().trim().equals("")) {
			return true;
		}
		return false;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy