Reference×
Reference
- [] (array access)
- = (assign)
- catch
- class
- , (comma)
- // (comment)
- {} (curly braces)
- /** */ (doc comment)
- . (dot)
- draw()
- exit()
- extends
- false
- final
- implements
- import
- loop()
- /* */ (multiline comment)
- new
- noLoop()
- null
- () (parentheses)
- popStyle()
- pop()
- public
- private
- pushStyle()
- push()
- return
- redraw()
- ; (semicolon)
- setResizable()
- setLocation()
- setTitle()
- setup()
- static
- super
- this
- true
- thread()
- void
- try
Name
getInt()
Class
TableRow
Description
Retrieves an integer value from the TableRow's specified column. The column may be specified by either its ID or title.
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 }
Syntax
.getInt(column)
.getInt(columnName)
Parameters
column
(int)
ID number of the column to referencecolumnName
(String)
title of the column to reference
Return
int

This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.