Here you can find the source of toShort(final String value)
Parameter | Description |
---|---|
value | a parameter |
public static Short toShort(final String value)
//package com.java2s; //License from project: Apache License public class Main { /**/* ww w . jav a 2 s . co m*/ * create Intger from str. * @param value * @return */ public static Short toShort(final String value) { return Short.parseShort(value); } }