Uses of Interface
com.hp.hpl.jena.query.QuerySolution

Packages that use QuerySolution
com.hp.hpl.jena.query ARQ - A query engine for Jena, implementing SPARQL. 
com.hp.hpl.jena.sparql.core   
com.hp.hpl.jena.sparql.engine   
com.hp.hpl.jena.sparql.engine.binding   
com.hp.hpl.jena.sparql.engine.http   
com.hp.hpl.jena.sparql.modify   
com.hp.hpl.jena.sparql.resultset   
com.hp.hpl.jena.update   
 

Uses of QuerySolution in com.hp.hpl.jena.query
 

Classes in com.hp.hpl.jena.query that implement QuerySolution
 class QuerySolutionMap
          Implementation of QuerySolution that is backed by an in-memory map.
 

Methods in com.hp.hpl.jena.query that return QuerySolution
 QuerySolution ResultSet.next()
          Moves onto the next result.
 QuerySolution ResultSet.nextSolution()
          Moves onto the next result (legacy - use .next()).
 

Methods in com.hp.hpl.jena.query that return types with arguments of type QuerySolution
static List<QuerySolution> ResultSetFormatter.toList(ResultSet resultSet)
          Turn the result set into a java.util.List
 

Methods in com.hp.hpl.jena.query with parameters of type QuerySolution
 void QuerySolutionMap.addAll(QuerySolution other)
          Add all of the solutions from one QuerySolution into this QuerySolutionMap
static QueryExecution QueryExecutionFactory.create(Query query, Dataset dataset, QuerySolution initialBinding)
          Create a QueryExecution over a Dataset given some initial values of variables.
static QueryExecution QueryExecutionFactory.create(Query query, com.hp.hpl.jena.rdf.model.Model model, QuerySolution initialBinding)
          Create a QueryExecution to execute over the Model, given some initial values of variables.
static QueryExecution QueryExecutionFactory.create(Query query, QuerySolution initialBinding)
          Create a QueryExecution to execute over the Model.
static QueryExecution QueryExecutionFactory.create(String queryStr, Dataset dataset, QuerySolution initialBinding)
          Create a QueryExecution over a Dataset given some initial values of variables.
static QueryExecution QueryExecutionFactory.create(String queryStr, com.hp.hpl.jena.rdf.model.Model model, QuerySolution initialBinding)
          Create a QueryExecution to execute over the Model, given some initial values of variables.
static QueryExecution QueryExecutionFactory.create(String queryStr, QuerySolution initialBinding)
          Create a QueryExecution given some initial values of variables.
static QueryExecution QueryExecutionFactory.create(String queryStr, Syntax syntax, Dataset dataset, QuerySolution initialBinding)
          Create a QueryExecution over a Dataset given some initial values of variables.
static QueryExecution QueryExecutionFactory.create(String queryStr, Syntax syntax, com.hp.hpl.jena.rdf.model.Model model, QuerySolution initialBinding)
          Create a QueryExecution to execute over the Model, given some initial values of variables.
static QueryExecution QueryExecutionFactory.create(String queryStr, Syntax syntax, QuerySolution initialBinding)
          Create a QueryExecution given some initial values of variables.
 void QueryExecution.setInitialBinding(QuerySolution binding)
          Set the initial association of variables and values.
 

Uses of QuerySolution in com.hp.hpl.jena.sparql.core
 

Classes in com.hp.hpl.jena.sparql.core that implement QuerySolution
 class QuerySolutionBase
          Implementation of QuerySolution that contains the canonicalization and casting code.
 class ResultBinding
          A mapping from variable name to an RDF value.
 

Uses of QuerySolution in com.hp.hpl.jena.sparql.engine
 

Methods in com.hp.hpl.jena.sparql.engine that return QuerySolution
 QuerySolution ResultSetStream.next()
          Moves onto the next result possibility.
 QuerySolution ResultSetStream.nextSolution()
          Moves onto the next result possibility.
 

Methods in com.hp.hpl.jena.sparql.engine with parameters of type QuerySolution
 void QueryExecutionBase.setInitialBinding(QuerySolution startSolution)
           
 

Uses of QuerySolution in com.hp.hpl.jena.sparql.engine.binding
 

Methods in com.hp.hpl.jena.sparql.engine.binding with parameters of type QuerySolution
static void BindingUtils.addToBinding(BindingMap binding, QuerySolution qSolution)
           
static Binding BindingUtils.asBinding(QuerySolution qSolution)
          Convert a query solution to a binding
 

Uses of QuerySolution in com.hp.hpl.jena.sparql.engine.http
 

Methods in com.hp.hpl.jena.sparql.engine.http with parameters of type QuerySolution
 void QueryEngineHTTP.setInitialBinding(QuerySolution binding)
           
 

Uses of QuerySolution in com.hp.hpl.jena.sparql.modify
 

Methods in com.hp.hpl.jena.sparql.modify with parameters of type QuerySolution
 void UpdateProcessorBase.setInitialBinding(QuerySolution binding)
           
 

Uses of QuerySolution in com.hp.hpl.jena.sparql.resultset
 

Methods in com.hp.hpl.jena.sparql.resultset that return QuerySolution
 QuerySolution ResultSetMem.next()
          Moves onto the next result possibility.
 QuerySolution SortedResultSet.next()
           
 QuerySolution ResultSetMem.nextSolution()
          Moves onto the next result possibility.
 QuerySolution SortedResultSet.nextSolution()
           
 

Methods in com.hp.hpl.jena.sparql.resultset with parameters of type QuerySolution
 void JSONOutputResultSet.finish(QuerySolution qs)
           
 void ResultSetProcessor.finish(QuerySolution qs)
          Finish query solution (row in result set)
 void PlainFormat.finish(QuerySolution qs)
           
 void XMLOutputResultSet.finish(QuerySolution qs)
           
 void JSONOutputResultSet.start(QuerySolution qs)
           
 void ResultSetProcessor.start(QuerySolution qs)
          Start query solution (row in result set)
 void PlainFormat.start(QuerySolution qs)
           
 void XMLOutputResultSet.start(QuerySolution qs)
           
 

Uses of QuerySolution in com.hp.hpl.jena.update
 

Methods in com.hp.hpl.jena.update with parameters of type QuerySolution
static UpdateProcessor UpdateFactory.create(Update update, GraphStore graphStore, QuerySolution initialSolution)
          Deprecated. Use UpdateExecutionFactory.create(Update,GraphStore,QuerySolution) instead
static UpdateProcessor UpdateExecutionFactory.create(Update update, GraphStore graphStore, QuerySolution initialSolution)
          Create a UpdateProcessor appropriate to the GraphStore, or null if no available factory to make an UpdateProcessor
static UpdateProcessor UpdateFactory.create(UpdateRequest updateRequest, GraphStore graphStore, QuerySolution initialSolution)
          Deprecated. Use UpdateExecutionFactory.create(UpdateRequest,GraphStore,QuerySolution) instead
static UpdateProcessor UpdateExecutionFactory.create(UpdateRequest updateRequest, GraphStore graphStore, QuerySolution initialSolution)
          Create a UpdateProcessor appropriate to the GraphStore, or null if no available factory to make an UpdateProcessor
static void UpdateAction.execute(Update update, Dataset dataset, QuerySolution initialBinding)
          Execute a single SPARQL Update operation.
static void UpdateAction.execute(Update update, com.hp.hpl.jena.rdf.model.Model model, QuerySolution initialBinding)
          Execute a single SPARQL Update operation.
static void UpdateAction.execute(UpdateRequest request, Dataset dataset, QuerySolution initialBinding)
          Execute SPARQL Update operations.
static void UpdateAction.execute(UpdateRequest request, com.hp.hpl.jena.rdf.model.Model model, QuerySolution initialBinding)
          Execute SPARQL Update operations.
static void UpdateAction.parseExecute(String updateString, Dataset dataset, QuerySolution initialBinding)
          Parse a string containing SPARQL Update operations, and execute the operations.
static void UpdateAction.parseExecute(String updateString, com.hp.hpl.jena.rdf.model.Model model, QuerySolution initialBinding)
          Parse a string containing SPARQL Update operations, and execute the operations.
static void UpdateAction.readExecute(String filename, Dataset dataset, QuerySolution initialBinding)
          Read a file containing SPARQL Update operations, and execute the operations.
static void UpdateAction.readExecute(String filename, com.hp.hpl.jena.rdf.model.Model model, QuerySolution initialBinding)
          Read a file containing SPARQL Update operations, and execute the operations.
 void UpdateProcessor.setInitialBinding(QuerySolution binding)
          Set the initial association of variables and values.
 



Licenced under the Apache License, Version 2.0