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