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

Packages that use QOperatorNode
to.etc.webapp.query   
 

Uses of QOperatorNode in to.etc.webapp.query
 

Subclasses of QOperatorNode in to.etc.webapp.query
 class QBetweenNode
          Represents a "between" operation where the base item is a property reference.
 class QExistsSubquery<T>
          Represents an "exists" subquery on some child relation of a record.
 class QLiteral
           
 class QMultiNode
          A node representing the same operation spanning several nodes (like x AND y AND z)
 class QOrder
           
 class QPropertyComparison
           
 class QSelectionSubquery
           
 class QUnaryNode
           
 class QUnaryProperty
           
 

Methods in to.etc.webapp.query that return QOperatorNode
 QOperatorNode QBetweenNode.getA()
          The low value of the between operation (prop between A and B)
 QOperatorNode QBetweenNode.getB()
          The high value of the between operation (prop between A and B)
 QOperatorNode QPropertyComparison.getExpr()
           
 QOperatorNode QUnaryNode.getNode()
           
abstract  QOperatorNode QRestrictor.getRestrictions()
           
 QOperatorNode QExistsSubquery.getRestrictions()
           
 QOperatorNode QCriteriaQueryBase.getRestrictions()
           
 

Methods in to.etc.webapp.query that return types with arguments of type QOperatorNode
 java.util.List<QOperatorNode> QMultiNode.getChildren()
           
 

Methods in to.etc.webapp.query with parameters of type QOperatorNode
 QSelection<T> QSelection.add(QOperatorNode r)
          
 QRestrictor<T> QRestrictor.add(QOperatorNode n)
           
 QCriteria<T> QCriteria.add(QOperatorNode r)
          
static QMultiNode QRestriction.and(QOperatorNode... list)
           
protected  void QRestrictor.internalAdd(QOperatorNode r)
          Add a new restriction to the list of restrictions on the data.
static QMultiNode QRestriction.or(QOperatorNode... list)
           
 QSelection<T> QSelection.or(QOperatorNode a1, QOperatorNode a2, QOperatorNode... a)
          Deprecated. 
 QSelection<T> QSelection.or(QOperatorNode a1, QOperatorNode a2, QOperatorNode... a)
          Deprecated. 
 QRestrictor<T> QRestrictor.or(QOperatorNode a1, QOperatorNode a2, QOperatorNode... rest)
          Deprecated. 
 QRestrictor<T> QRestrictor.or(QOperatorNode a1, QOperatorNode a2, QOperatorNode... rest)
          Deprecated. 
 QCriteria<T> QCriteria.or(QOperatorNode a1, QOperatorNode a2, QOperatorNode... a)
          Deprecated. 
 QCriteria<T> QCriteria.or(QOperatorNode a1, QOperatorNode a2, QOperatorNode... a)
          Deprecated. 
abstract  void QRestrictor.setRestrictions(QOperatorNode n)
           
 void QExistsSubquery.setRestrictions(QOperatorNode restrictions)
           
 void QCriteriaQueryBase.setRestrictions(QOperatorNode restrictions)
           
 

Constructors in to.etc.webapp.query with parameters of type QOperatorNode
QBetweenNode(QOperation operation, java.lang.String prop, QOperatorNode a, QOperatorNode b)
           
QMultiNode(QOperation operation, QOperatorNode[] ch)
           
QPropertyComparison(QOperation operation, java.lang.String poperty, QOperatorNode expr)
           
QUnaryNode(QOperation operation, QOperatorNode lhs)