Uses of Interface
org.jboss.dna.graph.query.QueryResults.Columns

Packages that use QueryResults.Columns
org.jboss.dna.graph.query The Query API provides a mechanism for building and executing queries. 
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. 
org.jboss.dna.search.lucene   
 

Uses of QueryResults.Columns in org.jboss.dna.graph.query
 

Methods in org.jboss.dna.graph.query that return QueryResults.Columns
 QueryResults.Columns QueryResults.getColumns()
          Get the description of the columns contained in these results.
 QueryResults.Columns QueryResults.Columns.subSelect(Column... columns)
          Obtain a new definition for the query results that can be used to reference the same tuples that use this columns definition, but that defines a subset of the columns in this definition.
 QueryResults.Columns QueryResults.Columns.subSelect(List<Column> columns)
          Obtain a new definition for the query results that can be used to reference the same tuples that use this columns definition, but that defines a subset of the columns in this definition.
 

Methods in org.jboss.dna.graph.query with parameters of type QueryResults.Columns
 boolean QueryResults.Columns.includes(QueryResults.Columns other)
          Determine whether this mapping includes all of the columns (and locations) in the supplied mapping.
 boolean QueryResults.Columns.isUnionCompatible(QueryResults.Columns other)
          Determine whether this column and the other are union-compatible (that is, having the same columns).
 

Uses of QueryResults.Columns in org.jboss.dna.graph.query.process
 

Classes in org.jboss.dna.graph.query.process that implement QueryResults.Columns
 class FullTextSearchResultColumns
          A specialization of QueryResultColumns that can be used to represent results containing only the Location of the node and the
 class QueryResultColumns
          Defines the columns associated with the results of a query.
 

Methods in org.jboss.dna.graph.query.process that return QueryResults.Columns
 QueryResults.Columns QueryResults.getColumns()
          Get the description of the columns contained in these results.
 QueryResults.Columns ProcessingComponent.getColumns()
          Get the column definitions.
 QueryResults.Columns QueryResultColumns.subSelect(Column... columns)
          Obtain a new definition for the query results that can be used to reference the same tuples that use this columns definition, but that defines a subset of the columns in this definition.
 QueryResults.Columns QueryResultColumns.subSelect(List<Column> columns)
          Obtain a new definition for the query results that can be used to reference the same tuples that use this columns definition, but that defines a subset of the columns in this definition.
 

Methods in org.jboss.dna.graph.query.process with parameters of type QueryResults.Columns
 boolean QueryResultColumns.includes(QueryResults.Columns other)
          Determine whether this mapping includes all of the columns (and locations) in the supplied mapping.
 boolean QueryResultColumns.isUnionCompatible(QueryResults.Columns other)
          Determine whether this column and the other are union-compatible (that is, having the same columns).
 

Constructors in org.jboss.dna.graph.query.process with parameters of type QueryResults.Columns
ExceptComponent(QueryContext context, QueryResults.Columns columns, Iterable<ProcessingComponent> sources, boolean alreadySorted, boolean all)
           
IntersectComponent(QueryContext context, QueryResults.Columns columns, Iterable<ProcessingComponent> sources, boolean alreadySorted, boolean all)
           
NoResultsComponent(QueryContext context, QueryResults.Columns columns)
           
QueryResults(QueryResults.Columns columns, QueryResults.Statistics statistics)
          Create an empty QueryResults object for the supplied context, command, and result columns.
QueryResults(QueryResults.Columns columns, QueryResults.Statistics statistics, List<Object[]> tuples)
          Create a results object for the supplied context, command, and result columns and with the supplied tuples.
QueryResults(QueryResults.Columns columns, QueryResults.Statistics statistics, List<Object[]> tuples, Problems problems, String plan)
          Create a results object for the supplied context, command, and result columns and with the supplied tuples.
QueryResults(QueryResults.Columns columns, QueryResults.Statistics statistics, Problems problems)
          Create an empty QueryResults object for the supplied context, command, and result columns.
UnionComponent(QueryContext context, QueryResults.Columns columns, Iterable<ProcessingComponent> sources, boolean alreadySorted, boolean all)
           
 

Uses of QueryResults.Columns in org.jboss.dna.graph.request
 

Methods in org.jboss.dna.graph.request that return QueryResults.Columns
 QueryResults.Columns FullTextSearchRequest.getResultColumns()
          Get the specification of the columns for the results.
 QueryResults.Columns AccessQueryRequest.resultColumns()
          Get the specification of the columns for the results.
 

Methods in org.jboss.dna.graph.request with parameters of type QueryResults.Columns
 void FullTextSearchRequest.setResults(QueryResults.Columns resultColumns, List<Object[]> tuples, QueryResults.Statistics statistics)
          Set the results for this request.
 

Constructors in org.jboss.dna.graph.request with parameters of type QueryResults.Columns
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.
 

Uses of QueryResults.Columns in org.jboss.dna.search.lucene
 

Methods in org.jboss.dna.search.lucene with parameters of type QueryResults.Columns
 AbstractLuceneSearchEngine.TupleCollector LuceneSearchSession.createTupleCollector(QueryResults.Columns columns)
          Create a AbstractLuceneSearchEngine.TupleCollector instance that collects the results from the index(es).
 



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