Checks if a character is a decimal digit (0-9). @param c the character to check @return true if c is '0' through '9', false otherwise
(char c)
| 298 | * @return true if c is '0' through '9', false otherwise |
| 299 | */ |
| 300 | private static boolean isDigit(char c) { |
| 301 | return '0' <= c && c <= '9'; |
| 302 | } |
| 303 | |
| 304 | /** |
| 305 | * Detects special floating-point values "NaN" and "Infinity" at the start of a CharSequence. |
no outgoing calls
no test coverage detected