|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Uses of InvalidQueryException in com.google.visualization.datasource |
|---|
| Methods in com.google.visualization.datasource that throw InvalidQueryException | |
|---|---|
static DataTable |
DataSourceHelper.applyQuery(Query query,
DataTable dataTable,
com.ibm.icu.util.ULocale locale)
Applies the given Query on the given DataTable and returns the
resulting DataTable. |
static Query |
DataSourceHelper.parseQuery(String queryString)
|
static Query |
DataSourceHelper.parseQuery(String queryString,
com.ibm.icu.util.ULocale userLocale)
Parses a query string (e.g., 'select A,B pivot B') and creates a Query object. |
static void |
DataSourceHelper.validateQueryAgainstColumnStructure(Query query,
DataTable dataTable)
Checks that the query is valid against the structure of the data table. |
| Uses of InvalidQueryException in com.google.visualization.datasource.query |
|---|
| Methods in com.google.visualization.datasource.query that throw InvalidQueryException | |
|---|---|
void |
QueryLabels.addLabel(AbstractColumn column,
String label)
Adds a column label. |
void |
QueryFormat.addPattern(AbstractColumn column,
String pattern)
Adds a column pattern. |
void |
Query.setRowLimit(int rowLimit)
Sets the max number of rows to return to the caller. |
void |
Query.setRowOffset(int rowOffset)
Sets the number of rows that should be removed from the beginning of the data table. |
void |
Query.setRowSkipping(int rowSkipping)
Sets the number of rows to skip when selecting only a subset of the rows using skipping clause, e.g., skipping 4. |
void |
Query.validate()
Validates the query. |
void |
ScalarFunctionColumn.validateColumn(DataTable dataTable)
Checks that the column is valid. |
void |
AggregationColumn.validateColumn(DataTable dataTable)
Checks whether it makes sense to have the aggregation type on the aggregated column. |
abstract void |
AbstractColumn.validateColumn(DataTable dataTable)
Checks whether the column is valid. |
| Uses of InvalidQueryException in com.google.visualization.datasource.query.parser |
|---|
| Uses of InvalidQueryException in com.google.visualization.datasource.query.scalarfunction |
|---|
| Methods in com.google.visualization.datasource.query.scalarfunction that throw InvalidQueryException | |
|---|---|
void |
Upper.validateParameters(List<ValueType> types)
Validates that the number and types of the function parameters are valid. |
void |
ToDate.validateParameters(List<ValueType> types)
Validates that there is only 1 parameter given for this function, and that its type is either DATE, DATETIME or NUMBER. |
void |
TimeComponentExtractor.validateParameters(List<ValueType> types)
Validates that there is only one parameter given for the function, and that its type is DATE or DATETIME if the timeComponent to extract is year, month or day, or that it is DATETIME or TIMEOFDAY if the timeComponent is hour, minute, second or millisecond. |
void |
Sum.validateParameters(List<ValueType> types)
Validates that all function parameters are of type NUMBER, and that there are exactly 2 parameters. |
void |
ScalarFunction.validateParameters(List<ValueType> types)
Validates that the number and types of the function parameters are valid. |
void |
Quotient.validateParameters(List<ValueType> types)
Validates that all function parameters are of type NUMBER, and that there are exactly 2 parameters. |
void |
Product.validateParameters(List<ValueType> types)
Validates that all function parameters are of type NUMBER, and that there are exactly 2 parameters. |
void |
Modulo.validateParameters(List<ValueType> types)
Validates that all function parameters are of type NUMBER, and that there are exactly 2 parameters. |
void |
Lower.validateParameters(List<ValueType> types)
Validates that the number and types of the function parameters are valid. |
void |
Difference.validateParameters(List<ValueType> types)
Validates that all function parameters are of type NUMBER, and that there are exactly 2 parameters. |
void |
DateDiff.validateParameters(List<ValueType> types)
Validates that there are only 2 parameters given for this function, and that their types are either DATE or DATETIME. |
void |
CurrentDateTime.validateParameters(List<ValueType> types)
Validates that there are no parameters given for the function. |
void |
Constant.validateParameters(List<ValueType> types)
Validates that there are no parameters given for the function. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||