com.ibm.websphere.query.base
Interface IQuery

All Superinterfaces:
IStringBuilder, java.io.Serializable
All Known Subinterfaces:
ISelectQuery
All Known Implementing Classes:
Query, SelectQuery

public interface IQuery
extends IStringBuilder

IQuery is the root interface for the query, from which the predicates and tables may be obtained and a query string generated.


Method Summary
 ICondition[] getCollectionParams()
           
 IFrom getFrom()
           
 PredicateBase getPredicate()
           
 void setCollectionParams(ICondition[] collectionParams)
           
 void setFrom(IFrom from)
           
 void setPredicate(PredicateBase predicate)
           
 
Methods inherited from interface com.ibm.websphere.query.base.IStringBuilder
buildString, buildString
 

Method Detail

getFrom

IFrom getFrom()

setFrom

void setFrom(IFrom from)

getPredicate

PredicateBase getPredicate()

setPredicate

void setPredicate(PredicateBase predicate)

getCollectionParams

ICondition[] getCollectionParams()

setCollectionParams

void setCollectionParams(ICondition[] collectionParams)