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

Packages that use QRestrictor
to.etc.webapp.query   
 

Uses of QRestrictor in to.etc.webapp.query
 

Subclasses of QRestrictor in to.etc.webapp.query
 class QCriteria<T>
          Represents the selection of a list of persistent entity classes from the database.
 class QCriteriaQueryBase<T>
          Base class representing most of the query structure, just not the public interface part.
 class QSelection<T>
          Represents a selection of data elements from a database.
 

Methods in to.etc.webapp.query that return QRestrictor
 QRestrictor<T> QRestrictor.add(QOperatorNode n)
           
 QRestrictor<T> QRestrictor.and()
           
 QRestrictor<T> QRestrictor.between(java.lang.String property, java.lang.Object a, java.lang.Object b)
          Compare the value of a property with two literal bounds.
 QRestrictor<T> QRestrictor.eq(java.lang.String property, double value)
          Compare a property with some literal object value.
 QRestrictor<T> QRestrictor.eq(java.lang.String property, long value)
          Compare a property with some literal object value.
 QRestrictor<T> QRestrictor.eq(java.lang.String property, java.lang.Object value)
          Compare a property with some literal object value.
<U> QRestrictor<U>
QRestrictor.exists(java.lang.Class<U> childclass, java.lang.String childproperty)
          Create a joined "exists" subquery on some child list property.
 QRestrictor<T> QRestrictor.ge(java.lang.String property, double value)
          Compare a property with some literal object value.
 QRestrictor<T> QRestrictor.ge(java.lang.String property, long value)
          Compare a property with some literal object value.
 QRestrictor<T> QRestrictor.ge(java.lang.String property, java.lang.Object value)
          Compare a property with some literal object value.
 QRestrictor<?> QExistsSubquery.getParentQuery()
           
 QRestrictor<T> QRestrictor.gt(java.lang.String property, double value)
          Compare a property with some literal object value.
 QRestrictor<T> QRestrictor.gt(java.lang.String property, long value)
          Compare a property with some literal object value.
 QRestrictor<T> QRestrictor.gt(java.lang.String property, java.lang.Object value)
          Compare a property with some literal object value.
 QRestrictor<T> QRestrictor.ilike(java.lang.String property, java.lang.Object value)
          Do a case-independent 'like' comparison.
 QRestrictor<T> QRestrictor.isnotnull(java.lang.String property)
          Add the restriction that the property specified must be not-null.
 QRestrictor<T> QRestrictor.isnull(java.lang.String property)
          Add the restriction that the property specified must be null.
 QRestrictor<T> QRestrictor.le(java.lang.String property, double value)
          Compare a property with some literal object value.
 QRestrictor<T> QRestrictor.le(java.lang.String property, long value)
          Compare a property with some literal object value.
 QRestrictor<T> QRestrictor.le(java.lang.String property, java.lang.Object value)
          Compare a property with some literal object value.
 QRestrictor<T> QRestrictor.like(java.lang.String property, java.lang.Object value)
          Do a 'like' comparison.
 QRestrictor<T> QRestrictor.lt(java.lang.String property, double value)
          Compare a property with some literal object value.
 QRestrictor<T> QRestrictor.lt(java.lang.String property, long value)
          Compare a property with some literal object value.
 QRestrictor<T> QRestrictor.lt(java.lang.String property, java.lang.Object value)
          Compare a property with some literal object value.
 QRestrictor<T> QRestrictor.ne(java.lang.String property, double value)
          Compare a property with some literal object value.
 QRestrictor<T> QRestrictor.ne(java.lang.String property, long value)
          Compare a property with some literal object value.
 QRestrictor<T> QRestrictor.ne(java.lang.String property, java.lang.Object value)
          Compare a property with some literal object value.
 QRestrictor<T> QRestrictor.or()
          Return a thingy that constructs nodes combined with "or".
 QRestrictor<T> QRestrictor.or(QOperatorNode a1, QOperatorNode a2, QOperatorNode... rest)
          Deprecated. 
 QRestrictor<T> QRestrictor.sqlCondition(java.lang.String sql)
          Add a restriction specified in bare SQL.
 

Constructors in to.etc.webapp.query with parameters of type QRestrictor
QExistsSubquery(QRestrictor<?> parent, java.lang.Class<T> baseClass, java.lang.String property)