|
Oracle® OLAP Java API Reference 11g Release 2 (11.2) E10794-01 Beta Draft |
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectoracle.olapi.syntax.SyntaxObject
oracle.olapi.syntax.DataObject
oracle.olapi.syntax.Query
public abstract class Query
A DataObject
that represents a multi-row, multi-column result set
that is similar to a relational table, a SQL SELECT
statement,
or an OLAP function.
Method Summary | |
---|---|
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. |
Methods inherited from class oracle.olapi.syntax.SyntaxObject |
---|
equals, equals, fromSyntax, fromSyntax, fromSyntax, fromSyntax, fromSyntax, isValid, toSyntax, toSyntax, toSyntax, toSyntax, toSyntax, toSyntax, visit |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
---|
public 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.
|
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |