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

Method checkColumn

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

Throw an error if this column doesn't exist.

(int column)

Source from the content-addressed store, hash-verified

4181
4182 /** Throw an error if this column doesn't exist. */
4183 protected void checkColumn(int column) {
4184 if (column < 0 || column >= columns.length) {
4185 throw new ArrayIndexOutOfBoundsException("Column " + column + " does not exist.");
4186 }
4187 }
4188
4189
4190 /** Throw an error if this entry is out of bounds. */

Callers 6

findRowIndexMethod · 0.95
findRowIndicesMethod · 0.95
matchRowIndexMethod · 0.95
matchRowIndicesMethod · 0.95
replaceAllMethod · 0.95
checkBoundsMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected