Uses of Class
com.google.visualization.datasource.datatable.TableRow

Packages that use TableRow
com.google.visualization.datasource.datatable   
com.google.visualization.datasource.query   
com.google.visualization.datasource.query.engine   
 

Uses of TableRow in com.google.visualization.datasource.datatable
 

Methods in com.google.visualization.datasource.datatable that return TableRow
 TableRow TableRow.clone()
          Returns a clone of this TableRow.
 TableRow DataTable.getRow(int rowIndex)
          Returns the row at the given index.
 

Methods in com.google.visualization.datasource.datatable that return types with arguments of type TableRow
 java.util.List<TableRow> DataTable.getRows()
          Returns the list of all table rows.
 

Methods in com.google.visualization.datasource.datatable with parameters of type TableRow
 void DataTable.addRow(TableRow row)
          Adds a single row to the end of the result.
 

Method parameters in com.google.visualization.datasource.datatable with type arguments of type TableRow
 void DataTable.addRows(java.util.Collection<TableRow> rowsToAdd)
          Adds a collection of rows to the end of the result.
 void DataTable.setRows(java.util.Collection<TableRow> rows)
          Sets a collection of rows after clearing any current rows.
 

Uses of TableRow in com.google.visualization.datasource.query
 

Methods in com.google.visualization.datasource.query with parameters of type TableRow
 TableCell ScalarFunctionColumn.getCell(ColumnLookup lookup, TableRow row)
          Returns the cell of the column in the given row.
 TableCell AbstractColumn.getCell(ColumnLookup lookup, TableRow row)
          Returns the cell of the column in the given row.
 Value AbstractColumn.getValue(ColumnLookup lookup, TableRow row)
          Returns the value of the column in the given row.
 boolean ColumnColumnFilter.isMatch(DataTable table, TableRow row)
          Implements isMatch from the QueryFilter interface.
 boolean CompoundFilter.isMatch(DataTable table, TableRow row)
          Implements isMatch (from the QueryFilter interface) by recursively calling isMatch on each of the sub-filters, and using the compound filter type to determine the result.
 boolean ColumnIsNullFilter.isMatch(DataTable table, TableRow row)
          Checks if this row should be part of the result set.
 boolean NegationFilter.isMatch(DataTable table, TableRow row)
          Implements isMatch (from the QueryFilter interface) by recursively calling isMatch on the sub-filter and negating the result.
 boolean ColumnValueFilter.isMatch(DataTable table, TableRow row)
          Implements isMatch from the QueryFilter interface.
abstract  boolean QueryFilter.isMatch(DataTable table, TableRow row)
          Checks if this row should be part of the result set.
 

Uses of TableRow in com.google.visualization.datasource.query.engine
 

Methods in com.google.visualization.datasource.query.engine with parameters of type TableRow
 AggregationPath TableAggregator.getRowPath(TableRow row, DataTable table, int depth)
          Creates a path for the aggregation tree defined by a table row.
 



Copyright © 2009 Google. All Rights Reserved.