Uses of Class
org.jboss.dna.graph.query.model.Limit

Packages that use Limit
org.jboss.dna.graph.query.model The Abstract Query Model is a vocabulary that can be used to construct a language-neutral representation of a query. 
org.jboss.dna.graph.query.process This package defines the QueryProcessor interface, which is responsible for constructing for each query a tree of ProcessingComponent objects that each are responsible for processing a specific aspect of the query and returning the tuples to the parent component. 
org.jboss.dna.graph.request Sometimes its useful to work with a graph using objects that represent individual commands on the graph. 
 

Uses of Limit in org.jboss.dna.graph.query.model
 

Fields in org.jboss.dna.graph.query.model declared as Limit
static Limit Limit.NONE
           
 

Methods in org.jboss.dna.graph.query.model that return Limit
 Limit QueryCommand.getLimits()
          Get the limits associated with this query.
 Limit Limit.withOffset(int offset)
           
 Limit Limit.withRowLimit(int rowLimit)
           
 

Methods in org.jboss.dna.graph.query.model with parameters of type Limit
 void Visitors.AbstractVisitor.visit(Limit limit)
          
 void Visitors.WalkAllVisitor.visit(Limit limit)
          
 void Visitors.ReadableVisitor.visit(Limit limit)
          
 void Visitor.visit(Limit limit)
           
 

Constructors in org.jboss.dna.graph.query.model with parameters of type Limit
Query(Source source, Constraint constraint, List<Ordering> orderings, List<Column> columns, Limit limit, boolean isDistinct)
          Create a new query that uses the supplied source, constraint, orderings, columns and limits.
SetQuery(QueryCommand left, SetQuery.Operation operation, QueryCommand right, boolean all, List<Ordering> orderings, Limit limit)
          Create a set query involving the supplied left- and right-hand-side queries.
 

Uses of Limit in org.jboss.dna.graph.query.process
 

Constructors in org.jboss.dna.graph.query.process with parameters of type Limit
LimitComponent(ProcessingComponent delegate, Limit limit)
           
 

Uses of Limit in org.jboss.dna.graph.request
 

Methods in org.jboss.dna.graph.request that return Limit
 Limit AccessQueryRequest.limit()
          Get the limit of the result tuples, which can specify a maximum number of rows as well as an initial offset for the first row.
 

Constructors in org.jboss.dna.graph.request with parameters of type Limit
AccessQueryRequest(String workspace, SelectorName tableName, QueryResults.Columns resultColumns, List<Constraint> andedConstraints, Limit limit, Schemata schemata, Map<String,Object> variables)
          Create a new request to execute the supplied query against the name workspace.
 



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