Gets the next token from a tokenizer and converts it to an unsigned 32 bit integer. @return The next token in the stream, as an unsigned 32 bit integer. @throws TextParseException The input was invalid or not an unsigned 32 bit integer. @throws IOException An I/O error occurred.
()
| 423 | * @throws IOException An I/O error occurred. |
| 424 | */ |
| 425 | public long |
| 426 | getUInt32() throws IOException { |
| 427 | long l = getLong(); |
| 428 | if (l < 0 || l > 0xFFFFFFFFL) |
| 429 | throw exception("expected an 32 bit unsigned integer"); |
| 430 | return l; |
| 431 | } |
| 432 | |
| 433 | /** |
| 434 | * Gets the next token from a tokenizer and converts it to an unsigned 16 bit |
no test coverage detected