This reference is for Processing 3.0+. If you have a previous version, use the reference included with your software in the Help menu. If you see any errors or have suggestions, please let us know. If you prefer a more technical reference, visit the Processing Core Javadoc and Libraries Javadoc.

Name

TableRow

Examples
Table table;

void setup() {

  table = new Table();
  
  table.addColumn("number", Table.INT);
  table.addColumn("mass", Table.FLOAT);
  table.addColumn("name", Table.STRING);
  
  TableRow row = table.addRow();
  row.setInt("number", 8);
  row.setFloat("mass", 15.9994);
  row.setString("name", "Oxygen");
  
  println(row.getInt("number"));   // Prints 8
  println(row.getFloat("mass"));   // Prints 15.9994
  println(row.getString("name"));  // Prints "Oxygen
}
Description A TableRow object represents a single row of data values, stored in columns, from a table.

Additional TableRow methods are documented in the Processing Data Javadoc.
Methods
getString() Get an String value from the specified column
getInt() Get an integer value from the specified column
getFloat() Get a float value from the specified column
setString() Store a String value in the specified column
setInt() Store an integer value in the specified column
setFloat() Store a float value in the specified column
getColumnCount() Get the column count.
getColumnTitle() Get the column title.
RelatedTable
addRow()
removeRow()
clearRows()
getRow()
rows()
Updated on January 1, 2021 03:38:10am EST