Parses the specified string as a signed decimal integer value. @param string the string representation of an integer value. @return an Integer instance containing the integer value represented by string. @throws NumberFormatException if string
(String string)
| 634 | * @see #parseInt(String) |
| 635 | */ |
| 636 | public static Integer valueOf(String string) throws NumberFormatException { |
| 637 | return valueOf(parseInt(string)); |
| 638 | } |
| 639 | |
| 640 | /** |
| 641 | * Parses the specified string as a signed integer value using the specified |
no test coverage detected