Returns a new Integer object initialized to the value of the specified String. The argument is interpreted as representing a signed decimal integer, exactly as if the argument were given to the method. The result is an Integer object that represents the integer value specified by the string. In othe
(java.lang.String s)
| 294 | * new Integer(Integer.parseInt(s)) |
| 295 | */ |
| 296 | public static java.lang.Integer valueOf(java.lang.String s) throws java.lang.NumberFormatException{ |
| 297 | return new Integer(parseInt(s)); |
| 298 | } |
| 299 | |
| 300 | /** |
| 301 | * Returns a new Integer object initialized to the value of the specified String. The first argument is interpreted as representing a signed integer in the radix specified by the second argument, exactly as if the arguments were given to the |