Converts the specified string into an integer value. @param string string to be converted @return resulting integer value, or Integer#MIN_VALUE if the input is invalid
(final String string)
| 59 | * @return resulting integer value, or {@link Integer#MIN_VALUE} if the input is invalid |
| 60 | */ |
| 61 | public static int toInt(final String string) { |
| 62 | return Token.toInt(Token.token(string)); |
| 63 | } |
| 64 | |
| 65 | /** |
| 66 | * Converts the specified string to a boolean value. |
no test coverage detected