MCPcopy Create free account
hub / github.com/apache/solr / getChar

Method getChar

solr/solrj/src/java/org/noggit/JSONParser.java:249–255  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

247 }
248
249 protected int getChar() throws IOException {
250 if (start >= end) {
251 fill();
252 if (start >= end) return -1;
253 }
254 return buf[start++];
255 }
256
257 /**
258 * Returns true if the given character is considered to be whitespace. One difference between

Callers 14

getCharNWSMethod · 0.95
getCharExpectedMethod · 0.95
getNewlineCommentMethod · 0.95
getSlashCommentMethod · 0.95
matchBareWordMethod · 0.95
readNumberMethod · 0.95
readFracMethod · 0.95
readExpMethod · 0.95
readExpDigitsMethod · 0.95
continueNumberMethod · 0.95
readEscapedCharMethod · 0.95
readStringBareMethod · 0.95

Calls 1

fillMethod · 0.95

Tested by

no test coverage detected