|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Object
|
+--javax.wbem.query.WQLExp
|
+--javax.wbem.query.SelectExp
This class represents all 'select' clauses that are constructed in the WQL.
select qualifiedAttributeExp where queryExp
CIMClient, Serialized Form| Constructor Summary | |
SelectExp()
|
|
SelectExp(SelectList attList,
FromExp fromExp)
Constructor for select clauses. |
|
SelectExp(SelectList attList,
FromExp fromExp,
QueryExp whereClause)
Constructor for select clauses. |
|
SelectExp(java.lang.String query)
Constructor for select clause. |
|
| Method Summary | |
FromExp |
getFromClause()
Returns the fromm clause. |
SelectList |
getSelectList()
Returns the selectList. |
QueryExp |
getWhereClause()
Returns the where clause. |
java.lang.String |
toString()
|
| Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
public SelectExp(java.lang.String query)
query - WQL select query stringjava.lang.IllegalArgumentException - if the input query is not well
formed. The exception message contains string details of the specific
parsing exception.
public SelectExp(SelectList attList,
FromExp fromExp)
attList - List of attributes which are projected from the returned
rows.fromExp - The from clause which specifies which 'table' the
selection is made from. In the WQL mapping, classes
are mapped into tables, instances into rows and properties
into columns.
public SelectExp(SelectList attList,
FromExp fromExp,
QueryExp whereClause)
attList - List of attributes which are projected from the returned
rows.fromExp - The from clause which specifies which 'table' the
selection is made from. In the WQL mapping, classes
are mapped into tables, instances into rows and properties
into columns.whereClause - The where clause contains conditional expressions
which evaluate to true or false for a given row.
Those rows which evaluate to true are selected.public SelectExp()
| Method Detail |
public SelectList getSelectList()
public QueryExp getWhereClause()
public FromExp getFromClause()
public java.lang.String toString()
toString in class java.lang.Object
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||