Parses the specified string as a signed decimal integer value. The ASCII character \u002d ('-') is recognized as the minus sign. @param string the string representation of an integer value. @return the primitive integer value represented by string. @throws NumberFormatException
(String string)
| 312 | * can not be parsed as an integer value. |
| 313 | */ |
| 314 | public static int parseInt(String string) throws NumberFormatException { |
| 315 | return parseInt(string, 10); |
| 316 | } |
| 317 | |
| 318 | /** |
| 319 | * Parses the specified string as a signed integer value using the specified |
no test coverage detected