Here you can find the source of toByte(Object obj)
public static Byte toByte(Object obj)
//package com.java2s; /*/* w w w . j a v a 2s. c om*/ * Este programa es software libre; usted puede redistribuirlo y/o modificarlo bajo los terminos * de la licencia "GNU General Public License" publicada por la Fundacion "Free Software Foundation". * Este programa se distribuye con la esperanza de que pueda ser util, pero SIN NINGUNA GARANTIA; * vea la licencia "GNU General Public License" para obtener mas informacion. */ public class Main { public static Byte toByte(Object obj) { return obj == null ? null : obj instanceof Byte ? (Byte) obj : newByte(obj); } public static Byte newByte(Object obj) { if (obj == null) { return null; } else if (obj instanceof Byte) { Byte pdq = (Byte) obj; return pdq; } else if (obj instanceof String) { String pdq = (String) obj; return pdq.trim().isEmpty() ? null : new Byte(pdq); } else { return new Byte(obj.toString()); } } }