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

Method getStringRow

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

Source from the content-addressed store, hash-verified

3641
3642
3643 public String[] getStringRow(int row) {
3644 String[] outgoing = new String[columns.length];
3645 for (int col = 0; col < columns.length; col++) {
3646 outgoing[col] = getString(row, col);
3647 }
3648 return outgoing;
3649 }
3650
3651
3652 // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .

Callers 3

odsParseSheetMethod · 0.95
removeTitleRowMethod · 0.95
trimMethod · 0.95

Calls 1

getStringMethod · 0.95

Tested by

no test coverage detected