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

Packages that use Query
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.validate This package provides the interfaces that define the tables and columns that can be queried. 
 

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

Methods in org.jboss.dna.graph.query.model that return Query
 Query Query.adding(Column... columns)
          Create a copy of this query, but that returns results that include the columns specified by this query as well as the supplied columns.
 Query Query.adding(Ordering... orderings)
          Create a copy of this query, but that returns results that are ordered by the orderings of this column as well as those supplied.
 Query Query.constrainedBy(Constraint constraint)
          Create a copy of this query, but one that uses the supplied constraint.
 Query Query.distinct()
          Create a copy of this query, but one in which there are no duplicate rows in the results.
 Query Query.noDistinct()
          Create a copy of this query, but one in which there may be duplicate rows in the results.
 Query Query.orderedBy(List<Ordering> orderings)
          Create a copy of this query, but one whose results should be ordered by the supplied orderings.
 Query Query.returning(List<Column> columns)
          Create a copy of this query, but that returns results with the supplied columns.
 Query Query.withLimit(int rowLimit)
          Create a copy of this query, but one that uses the supplied limit on the number of result rows.
 Query Query.withOffset(int offset)
          Create a copy of this query, but one that uses the supplied offset.
 

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

Uses of Query in org.jboss.dna.graph.query.validate
 

Methods in org.jboss.dna.graph.query.validate with parameters of type Query
 void Validator.visit(Query obj)
          
 



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