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 . @webref data:composite @webBrie
| 19 | * @see Table#rows() |
| 20 | */ |
| 21 | public interface TableRow { |
| 22 | |
| 23 | /** |
| 24 | * Retrieves a String value from the <b>TableRow</b>'s specified column. |
| 25 | * The column may be specified by either its ID or title. |
| 26 | * |
| 27 | * @webref tablerow:method |
| 28 | * @webBrief Get a <b>String</b> value from the specified column |
| 29 | * @param column ID number of the column to reference |
| 30 | * @see TableRow#getInt(int) |
| 31 | * @see TableRow#getFloat(int) |
| 32 | */ |
| 33 | public String getString(int column); |
| 34 | |
| 35 | /** |
| 36 | * @param columnName title of the column to reference |
| 37 | */ |
| 38 | public String getString(String columnName); |
| 39 | |
| 40 | /** |
| 41 | * Retrieves an integer value from the <b>TableRow</b>'s specified column. |
| 42 | * The column may be specified by either its ID or title. |
| 43 | * |
| 44 | * @webref tablerow:method |
| 45 | * @webBrief Get an <b>integer</b> value from the specified column |
| 46 | * @param column ID number of the column to reference |
| 47 | * @see TableRow#getFloat(int) |
| 48 | * @see TableRow#getString(int) |
| 49 | */ |
| 50 | public int getInt(int column); |
| 51 | |
| 52 | /** |
| 53 | * @param columnName title of the column to reference |
| 54 | */ |
| 55 | public int getInt(String columnName); |
| 56 | |
| 57 | /** |
| 58 | * @webBrief Get a <b>long</b> value from the specified column |
| 59 | * @param column ID number of the column to reference |
| 60 | * @see TableRow#getFloat(int) |
| 61 | * @see TableRow#getString(int) |
| 62 | */ |
| 63 | |
| 64 | public long getLong(int column); |
| 65 | |
| 66 | /** |
| 67 | * @param columnName title of the column to reference |
| 68 | */ |
| 69 | public long getLong(String columnName); |
| 70 | |
| 71 | /** |
| 72 | * Retrieves a float value from the <b>TableRow</b>'s specified column. |
| 73 | * The column may be specified by either its ID or title. |
| 74 | * |
| 75 | * @webref tablerow:method |
| 76 | * @webBrief Get a <b>float</b> value from the specified column |
| 77 | * @param column ID number of the column to reference |
| 78 | * @see TableRow#getInt(int) |
no outgoing calls
no test coverage detected