MCPcopy Index your code
hub / github.com/processing/processing / checkRow

Method checkRow

core/src/processing/data/Table.java:4175–4179  ·  view source on GitHub ↗

Throw an error if this row doesn't exist.

(int row)

Source from the content-addressed store, hash-verified

4173
4174 /** Throw an error if this row doesn't exist. */
4175 protected void checkRow(int row) {
4176 if (row < 0 || row >= rowCount) {
4177 throw new ArrayIndexOutOfBoundsException("Row " + row + " does not exist.");
4178 }
4179 }
4180
4181
4182 /** Throw an error if this column doesn't exist. */

Callers 1

checkBoundsMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected