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

Method more

basex-core/src/main/java/org/basex/api/client/Query.java:74–80  ·  view source on GitHub ↗

Returns true if more items are available. @return result of check @throws IOException I/O exception

()

Source from the content-addressed store, hash-verified

72 * @throws IOException I/O exception
73 */
74 public boolean more() throws IOException {
75 if(cache == null) cache(false);
76 if(pos < cache.size()) return true;
77 cache = null;
78 types = null;
79 return false;
80 }
81
82 /**
83 * Caches the query result.

Callers 6

query2Method · 0.95
queryInitMethod · 0.95
queryNullBinaryMethod · 0.95
queryEmptyBinaryMethod · 0.95
queryEmptyStringMethod · 0.95
nextMethod · 0.95

Calls 2

cacheMethod · 0.95
sizeMethod · 0.65

Tested by 5

query2Method · 0.76
queryInitMethod · 0.76
queryNullBinaryMethod · 0.76
queryEmptyBinaryMethod · 0.76
queryEmptyStringMethod · 0.76