|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use QueryCommand | |
---|---|
org.jboss.dna.graph | The JBoss DNA Graph API defines the types that allow you to work with content organized as a graph. |
org.jboss.dna.graph.query | The Query API provides a mechanism for building and executing queries. |
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.parse | This package defines the QueryParser interface, which defines a component that can parse a query represented
in a specific language and produce the corresponding abstract query model representation. |
org.jboss.dna.graph.query.plan | This package defines the Planner interface, the CanonicalPlanner implementation, and the
PlanNode class that is used to represent a canonical query plan. |
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.query.validate | This package provides the interfaces that define the tables and columns that can be queried. |
org.jboss.dna.jcr.xpath |
Uses of QueryCommand in org.jboss.dna.graph |
---|
Methods in org.jboss.dna.graph with parameters of type QueryCommand | |
---|---|
Graph.BuildQuery |
Graph.query(QueryCommand query,
Schemata schemata)
Query the current workspace using the supplied Schemata . |
Uses of QueryCommand in org.jboss.dna.graph.query |
---|
Methods in org.jboss.dna.graph.query that return QueryCommand | |
---|---|
QueryCommand |
QueryBuilder.query()
Return a QueryCommand representing the currently-built query. |
Methods in org.jboss.dna.graph.query with parameters of type QueryCommand | |
---|---|
QueryResults |
Queryable.execute(QueryContext context,
QueryCommand query)
Execute the supplied query by planning, optimizing, and then processing it. |
QueryResults |
QueryEngine.execute(QueryContext context,
QueryCommand query)
Execute the supplied query by planning, optimizing, and then processing it. |
Uses of QueryCommand in org.jboss.dna.graph.query.model |
---|
Subclasses of QueryCommand in org.jboss.dna.graph.query.model | |
---|---|
class |
Query
|
class |
SetQuery
This object acts as a Set operator on multiple queries , such as performing UNION, INTERSECT, and EXCEPT
operations. |
Methods in org.jboss.dna.graph.query.model that return QueryCommand | |
---|---|
QueryCommand |
SetQuery.getLeft()
Get the left-hand query. |
QueryCommand |
SetQuery.getRight()
Get the right-hand query. |
Constructors in org.jboss.dna.graph.query.model with parameters of type QueryCommand | |
---|---|
SetQuery(QueryCommand left,
SetQuery.Operation operation,
QueryCommand right,
boolean all)
Create a set query involving the supplied left- and right-hand-side queries. |
|
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 QueryCommand in org.jboss.dna.graph.query.parse |
---|
Methods in org.jboss.dna.graph.query.parse that return QueryCommand | |
---|---|
QueryCommand |
QueryParsers.parse(TypeSystem typeSystem,
String language,
String query)
Execute the supplied query by planning, optimizing, and then processing it. |
QueryCommand |
SqlQueryParser.parseQuery(String query,
TypeSystem typeSystem)
Parse the supplied query from a string representation into a QueryCommand . |
QueryCommand |
QueryParser.parseQuery(String query,
TypeSystem typeSystem)
Parse the supplied query from a string representation into a QueryCommand . |
Uses of QueryCommand in org.jboss.dna.graph.query.plan |
---|
Methods in org.jboss.dna.graph.query.plan with parameters of type QueryCommand | |
---|---|
PlanNode |
Planner.createPlan(QueryContext context,
QueryCommand query)
Create a canonical query plan for the given command. |
PlanNode |
CanonicalPlanner.createPlan(QueryContext context,
QueryCommand query)
Create a canonical query plan for the given command. |
Uses of QueryCommand in org.jboss.dna.graph.query.process |
---|
Methods in org.jboss.dna.graph.query.process with parameters of type QueryCommand | |
---|---|
QueryResults |
QueryProcessor.execute(QueryContext context,
QueryCommand command,
QueryResults.Statistics statistics,
PlanNode plan)
Process the supplied query plan for the given command and return the results. |
QueryResults |
Processor.execute(QueryContext context,
QueryCommand command,
QueryResults.Statistics statistics,
PlanNode plan)
Process the supplied query plan for the given command and return the results. |
Uses of QueryCommand in org.jboss.dna.graph.query.validate |
---|
Methods in org.jboss.dna.graph.query.validate that return QueryCommand | |
---|---|
QueryCommand |
Schemata.View.getDefinition()
Get the query that is the definition of the view. |
Methods in org.jboss.dna.graph.query.validate with parameters of type QueryCommand | |
---|---|
ImmutableSchemata.Builder |
ImmutableSchemata.Builder.addView(String name,
QueryCommand definition)
Add a view with the supplied name and definition. |
Uses of QueryCommand in org.jboss.dna.jcr.xpath |
---|
Methods in org.jboss.dna.jcr.xpath that return QueryCommand | |
---|---|
QueryCommand |
XPathToQueryTranslator.createQuery(XPath.Component xpath)
|
QueryCommand |
XPathQueryParser.parseQuery(String query,
TypeSystem typeSystem)
Parse the supplied query from a string representation into a QueryCommand . |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |