public abstract class Query extends DataObject
DataObject that represents a multirow, multicolumn result set that is similar to a relational table, a SQL SELECT statement, or an OLAP function.| Modifier and Type | Method and Description |
|---|---|
abstract ColumnExpression |
getColumnExpression(java.lang.String colName)
Gets the specified
ColumnExpression of the Query. |
abstract java.util.List<ColumnExpression> |
getColumnExpressions()
Gets the
ColumnExpression objects that are associated with the Query. |
abstract java.lang.String |
getName()
Gets the name of the
Query. |
boolean |
isFullyDimensioned()
Indicates whether the
Query is fully dimensioned. |
equals, equals, fromSyntax, fromSyntax, fromSyntax, fromSyntax, fromSyntax, isValid, toSyntax, toSyntax, toSyntax, toSyntax, toSyntax, toSyntax, visitpublic abstract java.lang.String getName()
Query.String that contains the name of the Query.public boolean isFullyDimensioned()
Query is fully dimensioned.boolean that is true if the Query is fully dimensioned or false if it is not.public abstract java.util.List<ColumnExpression> getColumnExpressions()
ColumnExpression objects that are associated with the Query.List of the ColumnExpression objects associated with the Query.public abstract ColumnExpression getColumnExpression(java.lang.String colName)
ColumnExpression of the Query.colName - A String that contains the name of the column to get.ColumnExpression with the specified name.