Gets the next token from a tokenizer, ensures it is an unquoted string, and converts it to a string. @return The next token in the stream, as a string. @throws TextParseException The input was invalid or not an unquoted string. @throws IOException An I/O error occurred.
()
| 392 | * @throws IOException An I/O error occurred. |
| 393 | */ |
| 394 | public String |
| 395 | getIdentifier() throws IOException { |
| 396 | return _getIdentifier("an identifier"); |
| 397 | } |
| 398 | |
| 399 | /** |
| 400 | * Gets the next token from a tokenizer and converts it to a long. |
no test coverage detected