Here you can find the source of castShort(Object o)
public static Short castShort(Object o)
//package com.java2s; //License from project: Open Source License public class Main { public static Short castShort(Object o) { if (o instanceof Number) { return ((Number) o).shortValue(); }/*from ww w .j a va 2 s . com*/ return null; } }