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

Interface TableRow

core/src/processing/data/TableRow.java:21–227  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

19 * @see Table#rows()
20 */
21public 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)

Callers 74

getGLParametersMethod · 0.65
PShapeSVGMethod · 0.65
parseImageMethod · 0.65
parsePolyMethod · 0.65
parsePathMethod · 0.65
parseColorsMethod · 0.65
getFloatWithUnitMethod · 0.65
LinearGradientMethod · 0.65
FontMethod · 0.65
FontFaceMethod · 0.65
FontGlyphMethod · 0.65
TableMethod · 0.65

Implementers 2

RowPointercore/src/processing/data/Table.java
Tablecore/src/processing/data/Table.java

Calls

no outgoing calls

Tested by

no test coverage detected