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

Method getStringRow

core/src/processing/data/Table.java:3575–3581  ·  view source on GitHub ↗
(int row)

Source from the content-addressed store, hash-verified

3573
3574
3575 public String[] getStringRow(int row) {
3576 String[] outgoing = new String[columns.length];
3577 for (int col = 0; col < columns.length; col++) {
3578 outgoing[col] = getString(row, col);
3579 }
3580 return outgoing;
3581 }
3582
3583
3584 // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .

Callers 3

odsParseSheetMethod · 0.95
removeTitleRowMethod · 0.95
trimMethod · 0.95

Calls 1

getStringMethod · 0.95

Tested by

no test coverage detected