MCPcopy Create free account
hub / github.com/DeNA/PacketProxy / getEOL

Method getEOL

src/main/java/core/org/xbill/DNS/Tokenizer.java:568–574  ·  view source on GitHub ↗

Gets the next token from a tokenizer, which must be an EOL or EOF. @throws TextParseException The input was invalid or not an EOL or EOF token. @throws IOException An I/O error occurred.

()

Source from the content-addressed store, hash-verified

566 * @throws IOException An I/O error occurred.
567 */
568public void
569getEOL() throws IOException {
570 Token next = get();
571 if (next.type != EOL && next.type != EOF) {
572 throw exception("expected EOL or EOF");
573 }
574}
575
576/**
577 * Returns a concatenation of the remaining strings from a Tokenizer.

Callers 3

startGenerateMethod · 0.80
endGenerateMethod · 0.80
_nextRecordMethod · 0.80

Calls 2

getMethod · 0.95
exceptionMethod · 0.95

Tested by

no test coverage detected