Uses of Class
to.etc.webapp.query.QCriteriaQueryBase

Packages that use QCriteriaQueryBase
to.etc.domui.hibernate.model   
to.etc.webapp.query   
 

Uses of QCriteriaQueryBase in to.etc.domui.hibernate.model
 

Methods in to.etc.domui.hibernate.model with parameters of type QCriteriaQueryBase
 void CriteriaCreatingVisitorWithSubcriteria.visitRestrictionsBase(QCriteriaQueryBase<?> n)
           
 void CriteriaCreatingVisitor.visitRestrictionsBase(QCriteriaQueryBase<?> n)
           
 

Uses of QCriteriaQueryBase in to.etc.webapp.query
 

Subclasses of QCriteriaQueryBase in to.etc.webapp.query
 class QCriteria<T>
          Represents the selection of a list of persistent entity classes from the database.
 class QSelection<T>
          Represents a selection of data elements from a database.
 

Methods in to.etc.webapp.query that return QCriteriaQueryBase
 QCriteriaQueryBase<T> QCriteriaQueryBase.add(QOrder r)
          Add an order clause to the list of sort items.
 QCriteriaQueryBase<T> QCriteriaQueryBase.ascending(java.lang.String property)
          Add a property to do an ascending sort on.
protected  QCriteriaQueryBase<T> QCriteriaQueryBase.avg(java.lang.String property)
          Select the average value of a property in the set.
protected  QCriteriaQueryBase<T> QCriteriaQueryBase.avg(java.lang.String property, java.lang.String alias)
          Select the average value of a property in the set.
protected  QCriteriaQueryBase<T> QCriteriaQueryBase.count(java.lang.String property)
          Select a count over the result set.
protected  QCriteriaQueryBase<T> QCriteriaQueryBase.count(java.lang.String property, java.lang.String alias)
          Select a count over the result set.
protected  QCriteriaQueryBase<T> QCriteriaQueryBase.countDistinct(java.lang.String property)
          Select a count of the distinct values over the result set.
protected  QCriteriaQueryBase<T> QCriteriaQueryBase.countDistinct(java.lang.String property, java.lang.String alias)
          Select a count of the distinct values over the result set.
 QCriteriaQueryBase<T> QCriteriaQueryBase.descending(java.lang.String property)
          Add a property to do a descending sort on.
protected  QCriteriaQueryBase<T> QCriteriaQueryBase.distinct(java.lang.String property)
          Select of the distinct values over the result set.
protected  QCriteriaQueryBase<T> QCriteriaQueryBase.distinct(java.lang.String property, java.lang.String alias)
          Select of the distinct values over the result set.
 QCriteriaQueryBase<T> QCriteriaQueryBase.limit(int limit)
          Limit the #of rows to the specified count.
protected  QCriteriaQueryBase<T> QCriteriaQueryBase.max(java.lang.String property)
          Select the max of a property in the set.
protected  QCriteriaQueryBase<T> QCriteriaQueryBase.max(java.lang.String property, java.lang.String alias)
          Select the max of a property in the set.
protected  QCriteriaQueryBase<T> QCriteriaQueryBase.min(java.lang.String property)
          Select the minimal value of a property in the set.
protected  QCriteriaQueryBase<T> QCriteriaQueryBase.min(java.lang.String property, java.lang.String alias)
          Select the minimal value of a property in the set.
protected  QCriteriaQueryBase<T> QCriteriaQueryBase.selectProperty(java.lang.String property)
          Select a property value from the base property in the result set.
protected  QCriteriaQueryBase<T> QCriteriaQueryBase.selectProperty(java.lang.String property, java.lang.String alias)
          Select a property value from the base property in the result set.
 QCriteriaQueryBase<T> QCriteriaQueryBase.start(int start)
          Start returning rows at the specified index in the result set (0-based).
protected  QCriteriaQueryBase<T> QCriteriaQueryBase.sum(java.lang.String property)
          Select the sum of a property in the set.
protected  QCriteriaQueryBase<T> QCriteriaQueryBase.sum(java.lang.String property, java.lang.String alias)
          Select the sum of a property in the set.
 

Methods in to.etc.webapp.query with parameters of type QCriteriaQueryBase
 void QEventListenerSet.callOnBeforeQuery(QDataContext dc, QCriteriaQueryBase<?> qc)
          Calls all listeners in order.
 IQueryExecutor<QDataContext> QQueryExecutorRegistry.getHandler(QDataContext root, QCriteriaQueryBase<?> query)
           
 void IQueryListener.onBeforeQuery(QDataContext dc, QCriteriaQueryBase<?> criteria)
          Called before a QDataContext.query(QCriteria) or QDataContext.query(QSelection) is executed; it can alter the query if needed.
 void QNodeVisitorBase.visitRestrictionsBase(QCriteriaQueryBase<?> n)
           
 void QNodeVisitor.visitRestrictionsBase(QCriteriaQueryBase<?> n)