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

Method nextRecord

src/main/java/core/org/xbill/DNS/Master.java:384–396  ·  view source on GitHub ↗

Returns the next record in the master file. This will process any directives before the next record. @return The next record. @throws IOException The master file could not be read, or was syntactically invalid.

()

Source from the content-addressed store, hash-verified

382 * invalid.
383 */
384public Record
385nextRecord() throws IOException {
386 Record rec = null;
387 try {
388 rec = _nextRecord();
389 }
390 finally {
391 if (rec == null) {
392 st.close();
393 }
394 }
395 return rec;
396}
397
398/**
399 * Specifies whether $GENERATE statements should be expanded. Whether

Callers 4

ZoneMethod · 0.95
_nextRecordMethod · 0.95
CacheMethod · 0.95
nextGeneratedMethod · 0.45

Calls 2

_nextRecordMethod · 0.95
closeMethod · 0.45

Tested by

no test coverage detected