Uses of Interface
processing.data.TableRow
-
Packages that use TableRow Package Description processing.data -
-
Uses of TableRow in processing.data
Methods in processing.data that return TableRow Modifier and Type Method Description TableRowTable. addRow()TableRowTable. addRow(Object[] columnData)TableRowTable. addRow(TableRow source)TableRowTable. findRow(String value, int column)TableRowTable. findRow(String value, String columnName)TableRowTable. getRow(int row)TableRowTable. matchRow(String regexp, int column)TableRowTable. matchRow(String regexp, String columnName)TableRowTable. setRow(int row, TableRow source)Methods in processing.data that return types with arguments of type TableRow Modifier and Type Method Description Iterator<TableRow>Table. findRowIterator(String value, int column)Iterator<TableRow>Table. findRowIterator(String value, String columnName)Iterable<TableRow>Table. findRows(String value, int column)Iterable<TableRow>Table. findRows(String value, String columnName)Map<String,TableRow>Table. getRowMap(int column)Return a mapping that connects the entry from a column back to the row from which it came.Map<String,TableRow>Table. getRowMap(String columnName)Iterator<TableRow>Table. matchRowIterator(String value, int column)Iterator<TableRow>Table. matchRowIterator(String value, String columnName)Iterable<TableRow>Table. matchRows(String regexp, int column)Iterable<TableRow>Table. matchRows(String regexp, String columnName)Iterable<TableRow>Table. rows()Note that this one iterator instance is shared by any calls to iterate the rows of this table.Iterable<TableRow>Table. rows(int[] indices)Methods in processing.data with parameters of type TableRow Modifier and Type Method Description TableRowTable. addRow(TableRow source)TableRowTable. setRow(int row, TableRow source)Constructors in processing.data with parameters of type TableRow Constructor Description StringDict(TableRow row)Create a dictionary that maps between column titles and cell entries in a TableRow.Constructor parameters in processing.data with type arguments of type TableRow Constructor Description Table(Iterable<TableRow> rows)
-