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

META-INF.templates.java.conversion-to-integer-method.ftl Maven / Gradle / Ivy

The newest version!
if (object == null) {
	return null;
}

if (object instanceof Integer) {
    return (Integer) object;
}

return Integer.valueOf(object.toString());




© 2015 - 2024 Weber Informatics LLC | Privacy Policy