MCPcopy Index your code
hub / github.com/benfry/processing4 / get

Method get

core/src/processing/data/StringList.java:137–142  ·  view source on GitHub ↗

Get an entry at a particular index. @webref stringlist:method @webBrief Get an entry at a particular index

(int index)

Source from the content-addressed store, hash-verified

135 * @webBrief Get an entry at a particular index
136 */
137 public String get(int index) {
138 if (index >= count) {
139 throw new ArrayIndexOutOfBoundsException(index);
140 }
141 return data[index];
142 }
143
144
145 /**

Callers 3

popMethod · 0.95
listFilesMethod · 0.95
rewritePropertiesFileMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected