Java tutorial
//package com.java2s; //License from project: Apache License public class Main { public static short doShort(Object obj) { return obj != null ? Short.parseShort(obj.toString()) : 0; } public static short doShort(Object obj, short defValue) { return obj != null ? Short.parseShort(obj.toString()) : defValue; } }