MCPcopy Create free account
hub / github.com/BaseXdb/basex / next

Method next

basex-core/src/main/java/org/basex/query/value/node/DBNode.java:262–268  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

260 int curr = first;
261
262 @Override
263 public DBNode next() {
264 if(curr == -1) return null;
265 final int c = curr, k = data.kind(c);
266 curr = data.parent(c, k);
267 return new DBNode(DBNode.this, c, k);
268 }
269 };
270 }
271

Callers

nothing calls this directly

Calls 6

ancestorIterMethod · 0.95
attSizeMethod · 0.80
dbKindMethod · 0.80
kindMethod · 0.65
sizeMethod · 0.65
parentMethod · 0.45

Tested by

no test coverage detected