Here you can find the source of castToShort(final String uid)
public static Short castToShort(final String uid)
//package com.java2s; //License from project: Open Source License public class Main { public static Short castToShort(final String uid) { try {// w w w.ja v a2 s . com return Short.decode(uid); } catch (NumberFormatException nfe) { return null; } } }