Uses of Interface
org.modeshape.jcr.api.query.qom.Limit

Packages that use Limit
org.modeshape.jcr.api.query.qom   
org.modeshape.jcr.query.qom   
 

Uses of Limit in org.modeshape.jcr.api.query.qom
 

Methods in org.modeshape.jcr.api.query.qom that return Limit
 Limit QueryCommand.getLimits()
          Get the limits associated with this query.
 Limit QueryObjectModelFactory.limit(int rowLimit, int offset)
          Evaluates to a limit on the maximum number of tuples in the results and the number of rows that are skipped before the first tuple in the results.
 

Methods in org.modeshape.jcr.api.query.qom with parameters of type Limit
 SetQuery QueryObjectModelFactory.except(QueryCommand left, QueryCommand right, Ordering[] orderings, Limit limit, boolean all)
          Creates a query command that returns all rows that are in the result of the left-hand query but not in the result of the right-hand query.
 SetQuery QueryObjectModelFactory.intersect(QueryCommand left, QueryCommand right, Ordering[] orderings, Limit limit, boolean all)
          Creates a query command that returns all rows that are both in the result of the left-hand query and in the result of the right-hand query.
 SelectQuery QueryObjectModelFactory.select(Source source, Constraint constraint, Ordering[] orderings, Column[] columns, Limit limit, boolean isDistinct)
          Creates a query with one or more selectors.
 SetQuery QueryObjectModelFactory.union(QueryCommand left, QueryCommand right, Ordering[] orderings, Limit limit, boolean all)
          Creates a query command that effectively appends the results of the right-hand query to those of the left-hand query.
 

Uses of Limit in org.modeshape.jcr.query.qom
 

Classes in org.modeshape.jcr.query.qom that implement Limit
 class JcrLimit
          Implementation of the equi-join condition for the extended JCR Query Object Model and the Graph API.
 

Methods in org.modeshape.jcr.query.qom that return Limit
 Limit JcrSetQueryObjectModel.getLimits()
          Get the limits associated with this query.
 Limit JcrSetQuery.getLimits()
          Get the limits associated with this query.
 Limit JcrSelectQuery.getLimits()
          Get the limits associated with this query.
 Limit JcrQueryObjectModelFactory.limit(int rowLimit, int offset)
          Evaluates to a limit on the maximum number of tuples in the results and the number of rows that are skipped before the first tuple in the results.
 

Methods in org.modeshape.jcr.query.qom with parameters of type Limit
 SetQuery JcrQueryObjectModelFactory.except(QueryCommand left, QueryCommand right, Ordering[] orderings, Limit limit, boolean all)
          Creates a query command that returns all rows that are in the result of the left-hand query but not in the result of the right-hand query.
 SetQuery JcrQueryObjectModelFactory.intersect(QueryCommand left, QueryCommand right, Ordering[] orderings, Limit limit, boolean all)
          Creates a query command that returns all rows that are both in the result of the left-hand query and in the result of the right-hand query.
 JcrSelectQuery JcrQueryObjectModelFactory.select(Source source, Constraint constraint, Ordering[] orderings, Column[] columns, Limit limit, boolean distinct)
          Creates a query with one or more selectors.
 JcrSetQuery JcrQueryObjectModelFactory.setQuery(QueryCommand left, SetQuery.Operation operation, QueryCommand right, Ordering[] orderings, Limit limit, boolean all)
           
 SetQuery JcrQueryObjectModelFactory.union(QueryCommand left, QueryCommand right, Ordering[] orderings, Limit limit, boolean all)
          Creates a query command that effectively appends the results of the right-hand query to those of the left-hand query.
 



Copyright © 2008-2010 JBoss, a division of Red Hat. All Rights Reserved.