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

love.cq.util.ObjectBean Maven / Gradle / Ivy

There is a newer version: 1.5
Show newest version
package love.cq.util;

public class ObjectBean {
	public static int getInt(String str , int def){
		try {
			return Integer.parseInt(str) ;
		} catch (NumberFormatException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
			return def ;
		}
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy