MCPcopy Create free account
hub / github.com/VolmitSoftware/Adapt / more

Method more

src/main/java/com/volmit/adapt/util/JSONTokener.java:120–127  ·  view source on GitHub ↗

Determine if the source string still contains characters that next() can consume. @return true if not yet at the end of the source.

()

Source from the content-addressed store, hash-verified

118 * @return true if not yet at the end of the source.
119 */
120 public boolean more() throws JSONException {
121 this.next();
122 if (this.end()) {
123 return false;
124 }
125 this.back();
126 return true;
127 }
128
129 /**
130 * Get the next character in the source string.

Callers 3

parseMethod · 0.80
toJSONObjectMethod · 0.80
toJSONObjectMethod · 0.80

Calls 3

nextMethod · 0.95
endMethod · 0.95
backMethod · 0.95

Tested by

no test coverage detected