Uses of Interface
org.openrdf.sesame.sail.query.Query

Packages that use Query
org.openrdf.sesame.query   
org.openrdf.sesame.query.rdql.parser   
org.openrdf.sesame.query.serql.parser   
org.openrdf.sesame.sail RDF Storage And Inference Layer.  
org.openrdf.sesame.sail.query SAIL query object model. 
org.openrdf.sesame.sailimpl.memory An implementation of the RDF SAIL API that uses main memory for storage.  
org.openrdf.sesame.sailimpl.nativerdf   
org.openrdf.sesame.sailimpl.omm.security   
org.openrdf.sesame.sailimpl.rdbms A generic SAIL implementation for relational databases. 
org.openrdf.sesame.sailimpl.sync Synchronization SAIL.  
 

Uses of Query in org.openrdf.sesame.query
 

Methods in org.openrdf.sesame.query that return Query
 Query TableQuery.getQuery()
           
 Query GraphQuery.getQuery()
           
 

Constructors in org.openrdf.sesame.query with parameters of type Query
TableQuery(Query query)
          Creates a new SfwQuery.
GraphQuery(Query query, Map namespaces)
          Creates a new Construct-From-Where query.
 

Uses of Query in org.openrdf.sesame.query.rdql.parser
 

Methods in org.openrdf.sesame.query.rdql.parser that return Query
 Query RdqlParser.select_query()
           
 

Uses of Query in org.openrdf.sesame.query.serql.parser
 

Methods in org.openrdf.sesame.query.serql.parser that return Query
 Query SerqlParser.table_query_set()
           
 Query SerqlParser.table_query()
           
 Query SerqlParser.graph_query_set()
           
 Query SerqlParser.graph_query()
           
 Query SerqlParser.select_query()
           
 Query SerqlParser.construct_query()
           
 

Uses of Query in org.openrdf.sesame.sail
 

Methods in org.openrdf.sesame.sail that return Query
 Query RdfSource.optimizeQuery(Query qc)
          Gives the RdfSource the oportunity to optimize a Query to its specific storage model.
 

Methods in org.openrdf.sesame.sail with parameters of type Query
 Query RdfSource.optimizeQuery(Query qc)
          Gives the RdfSource the oportunity to optimize a Query to its specific storage model.
 

Uses of Query in org.openrdf.sesame.sail.query
 

Classes in org.openrdf.sesame.sail.query that implement Query
 class ConstructQuery
          Class representing a construct-from-where query.
 class GraphPatternQuery
          An abstract representation of an RDF query that works with path expressions.
 class Intersect
          Determines the intersection of two sets of values that are produced by queries.
 class Minus
          Determines the difference between two sets of values that are produced by queries.
 class SelectQuery
          Class representing a select-from-where query.
 class SetOperator
          Generic set operator.
 class Union
          Determines the union of two sets of values that are produced by queries.
 

Methods in org.openrdf.sesame.sail.query that return Query
 Query SetOperator.getLeftArg()
           
 Query SetOperator.getRightArg()
           
 Query In.getRightArg()
           
 Query Exists.getArg()
           
 Query CompareAny.getRightArg()
           
 Query CompareAll.getRightArg()
           
 

Methods in org.openrdf.sesame.sail.query with parameters of type Query
static void QueryOptimizer.optimizeQuery(Query qc)
          Applies some generally applicable optimizations to the supplied query: variable assignments are inlined, and path expressions are sorted from more to less specific.
 

Constructors in org.openrdf.sesame.sail.query with parameters of type Query
Union(Query leftArg, Query rightArg, boolean all)
          Creates a new Union object that reports the union of the query answers that are reported by both the left- and right argument.
SetOperator(Query leftArg, Query rightArg, boolean all)
           
Minus(Query leftArg, Query rightArg, boolean all)
          Creates a new Minus object that filters the query answers from the left argument if they are not in the query answer set from the right argument.
Intersect(Query leftArg, Query rightArg, boolean all)
          Creates a new Intersect object that only reports query answers that are present in the query answer sets of both the left- and right argument.
In(ValueExpr leftArg, Query rightArg)
           
Exists(Query qc)
           
CompareAny(ValueExpr valueExpr, Query qc, int op)
           
CompareAll(ValueExpr valueExpr, Query qc, int op)
           
 

Uses of Query in org.openrdf.sesame.sailimpl.memory
 

Methods in org.openrdf.sesame.sailimpl.memory that return Query
 Query RdfSource.optimizeQuery(Query qc)
           
 

Methods in org.openrdf.sesame.sailimpl.memory with parameters of type Query
 Query RdfSource.optimizeQuery(Query qc)
           
 

Uses of Query in org.openrdf.sesame.sailimpl.nativerdf
 

Methods in org.openrdf.sesame.sailimpl.nativerdf that return Query
 Query NativeRdfRepository.optimizeQuery(Query qc)
           
 

Methods in org.openrdf.sesame.sailimpl.nativerdf with parameters of type Query
 Query NativeRdfRepository.optimizeQuery(Query qc)
           
 

Uses of Query in org.openrdf.sesame.sailimpl.omm.security
 

Methods in org.openrdf.sesame.sailimpl.omm.security that return Query
 Query SecuritySail.optimizeQuery(Query qc)
           
 

Methods in org.openrdf.sesame.sailimpl.omm.security with parameters of type Query
 Query SecuritySail.optimizeQuery(Query qc)
           
 

Uses of Query in org.openrdf.sesame.sailimpl.rdbms
 

Methods in org.openrdf.sesame.sailimpl.rdbms that return Query
 Query RdfSource.optimizeQuery(Query query)
          Merges all TriplePatterns to one large SQL-join and includes as much of the boolean constraints as possible.
 

Methods in org.openrdf.sesame.sailimpl.rdbms with parameters of type Query
 Query RdfSource.optimizeQuery(Query query)
          Merges all TriplePatterns to one large SQL-join and includes as much of the boolean constraints as possible.
 

Uses of Query in org.openrdf.sesame.sailimpl.sync
 

Methods in org.openrdf.sesame.sailimpl.sync that return Query
 Query SyncRdfRepository.optimizeQuery(Query qc)
           
 

Methods in org.openrdf.sesame.sailimpl.sync with parameters of type Query
 Query SyncRdfRepository.optimizeQuery(Query qc)
           
 



Copyright © 2002-2006 Aduna BV, GNU LGPL License applies.