Android Utililty Methods String to Short Convert

List of utility methods to do String to Short Convert

Description

The list of methods to do String to Short Convert are organized into topic(s).

Method

floatparseShort(String string, short defValue)
Parses string to short
try {
    return Short.parseShort(string);
} catch (NumberFormatException nfe) {
    return defValue;