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

Method getString

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

Gets the next token from a tokenizer and converts it to a string. @return The next token in the stream, as a string. @throws TextParseException The input was invalid or not a string. @throws IOException An I/O error occurred.

()

Source from the content-addressed store, hash-verified

368 * @throws IOException An I/O error occurred.
369 */
370public String
371getString() throws IOException {
372 Token next = get();
373 if (!next.isString()) {
374 throw exception("expected a string");
375 }
376 return next.value;
377}
378
379private String
380_getIdentifier(String expected) throws IOException {

Callers 15

rdataFromStringMethod · 0.45
findWinMethod · 0.45
rdataFromStringMethod · 0.45
rdataFromStringMethod · 0.45
rdataFromStringMethod · 0.45
rdataFromStringMethod · 0.45
rdataFromStringMethod · 0.45
findWinMethod · 0.45
rdataFromStringMethod · 0.45
rdataFromStringMethod · 0.45
rdataFromStringMethod · 0.45
rdataFromStringMethod · 0.45

Calls 3

getMethod · 0.95
isStringMethod · 0.95
exceptionMethod · 0.95

Tested by

no test coverage detected