META-INF.templates.java.conversion-to-long-method.ftl Maven / Gradle / Ivy
The newest version!
if (object == null) {
return null;
}
if (object instanceof Long) {
return (Long) object;
}
return Long.valueOf(object.toString());