Reference+
Class Name
TableRow
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.
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 }
Methods
getString()
Get a String value from the specified columngetInt()
Get an integer value from the specified columngetFloat()
Get a float value from the specified columnsetString()
Store a String value in the specified columnsetInt()
Store an integer value in the specified columnsetFloat()
Store a float value in the specified columngetColumnCount()
Get the column countgetColumnTitle()
Get the column title.
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.