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

Method getArray

solr/solrj/src/java/org/noggit/ObjectBuilder.java:196–204  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

194 }
195
196 public Object getArray() throws IOException {
197 Object arr = newArray();
198 for (; ; ) {
199 int ev = parser.nextEvent();
200 if (ev == JSONParser.ARRAY_END) return endArray(arr);
201 Object val = getVal();
202 addArrayVal(arr, val);
203 }
204 }
205}

Callers 1

getValMethod · 0.95

Calls 5

newArrayMethod · 0.95
endArrayMethod · 0.95
getValMethod · 0.95
addArrayValMethod · 0.95
nextEventMethod · 0.45

Tested by

no test coverage detected