Uses of Interface
org.apache.jena.query.QuerySolution
-
Packages that use QuerySolution Package Description org.apache.jena.query ARQ - A query engine for Jena, implementing SPARQL.org.apache.jena.riot.resultset.rw org.apache.jena.sparql.core org.apache.jena.sparql.engine org.apache.jena.sparql.engine.binding org.apache.jena.sparql.engine.http org.apache.jena.sparql.resultset org.apache.jena.update -
-
Uses of QuerySolution in org.apache.jena.query
Classes in org.apache.jena.query that implement QuerySolution Modifier and Type Class Description classQuerySolutionMapImplementation of QuerySolution that is backed by an in-memory map.Methods in org.apache.jena.query that return QuerySolution Modifier and Type Method Description QuerySolutionResultSet. next()Moves onto the next result.QuerySolutionResultSet. nextSolution()Moves onto the next result (legacy - use .next()).Methods in org.apache.jena.query that return types with arguments of type QuerySolution Modifier and Type Method Description static java.util.List<QuerySolution>ResultSetFormatter. toList(ResultSet resultSet)Turn the result set into a java.util.ListMethods in org.apache.jena.query with parameters of type QuerySolution Modifier and Type Method Description voidQuerySolutionMap. addAll(QuerySolution other)Add all of the solutions from one QuerySolution into this QuerySolutionMapstatic QueryExecutionQueryExecutionFactory. create(java.lang.String queryStr, Dataset dataset, QuerySolution initialBinding)Create a QueryExecution over a Dataset given some initial values of variables.static QueryExecutionQueryExecutionFactory. create(java.lang.String queryStr, QuerySolution initialBinding)Create a QueryExecution given some initial values of variables.static QueryExecutionQueryExecutionFactory. create(java.lang.String queryStr, Syntax syntax, Dataset dataset, QuerySolution initialBinding)Create a QueryExecution over a Dataset given some initial values of variables.static QueryExecutionQueryExecutionFactory. create(java.lang.String queryStr, Syntax syntax, QuerySolution initialBinding)Create a QueryExecution given some initial values of variables.static QueryExecutionQueryExecutionFactory. create(java.lang.String queryStr, Syntax syntax, Model model, QuerySolution initialBinding)Create a QueryExecution to execute over the Model, given some initial values of variables.static QueryExecutionQueryExecutionFactory. create(java.lang.String queryStr, Model model, QuerySolution initialBinding)Create a QueryExecution to execute over the Model, given some initial values of variables.static QueryExecutionQueryExecutionFactory. create(Query query, Dataset dataset, QuerySolution initialBinding)Create a QueryExecution over a Dataset given some initial values of variables.static QueryExecutionQueryExecutionFactory. create(Query query, QuerySolution initialBinding)Create a QueryExecution to execute over the Model.static QueryExecutionQueryExecutionFactory. create(Query query, Model model, QuerySolution initialBinding)Create a QueryExecution to execute over the Model, given some initial values of variables.voidQueryExecution. setInitialBinding(QuerySolution binding)Set the initial association of variables and values. -
Uses of QuerySolution in org.apache.jena.riot.resultset.rw
Methods in org.apache.jena.riot.resultset.rw that return QuerySolution Modifier and Type Method Description QuerySolutionResultsStAX. next()QuerySolutionResultsStAX. nextSolution() -
Uses of QuerySolution in org.apache.jena.sparql.core
Classes in org.apache.jena.sparql.core that implement QuerySolution Modifier and Type Class Description classQuerySolutionBaseImplementation of QuerySolution that contains the canonicalization and casting code.classResultBindingA mapping from variable name to an RDF value. -
Uses of QuerySolution in org.apache.jena.sparql.engine
Methods in org.apache.jena.sparql.engine that return QuerySolution Modifier and Type Method Description QuerySolutionResultSetCheckCondition. next()QuerySolutionResultSetStream. next()Moves onto the next result possibility.QuerySolutionResultSetCheckCondition. nextSolution()QuerySolutionResultSetStream. nextSolution()Moves onto the next result possibility.Methods in org.apache.jena.sparql.engine with parameters of type QuerySolution Modifier and Type Method Description voidQueryExecutionBase. setInitialBinding(QuerySolution startSolution) -
Uses of QuerySolution in org.apache.jena.sparql.engine.binding
Methods in org.apache.jena.sparql.engine.binding with parameters of type QuerySolution Modifier and Type Method Description static BindingBindingLib. asBinding(QuerySolution qSolution)Convert a query solution to a bindingstatic BindingBindingUtils. asBinding(QuerySolution qSolution)Deprecated.UseBindingLib.asBinding(QuerySolution)insteadstatic BindingBindingLib. toBinding(QuerySolution qSolution)static BindingBindingUtils. toBinding(QuerySolution qSolution)Deprecated.UseBindingLib.toBinding(QuerySolution)instead -
Uses of QuerySolution in org.apache.jena.sparql.engine.http
Methods in org.apache.jena.sparql.engine.http with parameters of type QuerySolution Modifier and Type Method Description voidQueryEngineHTTP. setInitialBinding(QuerySolution binding) -
Uses of QuerySolution in org.apache.jena.sparql.resultset
Methods in org.apache.jena.sparql.resultset that return QuerySolution Modifier and Type Method Description QuerySolutionResultSetMem. next()Moves onto the next result possibility.QuerySolutionResultSetPeeking. next()QuerySolutionResultSetWrapper. next()QuerySolutionResultSetMem. nextSolution()Moves onto the next result possibility.QuerySolutionResultSetPeeking. nextSolution()QuerySolutionResultSetWrapper. nextSolution()QuerySolutionResultSetMem. peek()QuerySolutionResultSetPeekable. peek()Peek at the next query solutionQuerySolutionResultSetPeeking. peek()Methods in org.apache.jena.sparql.resultset with parameters of type QuerySolution Modifier and Type Method Description voidPlainFormat. finish(QuerySolution qs)voidResultSetProcessor. finish(QuerySolution qs)Finish query solution (row in result set)voidPlainFormat. start(QuerySolution qs)voidResultSetProcessor. start(QuerySolution qs)Start query solution (row in result set) -
Uses of QuerySolution in org.apache.jena.update
Methods in org.apache.jena.update with parameters of type QuerySolution Modifier and Type Method Description static UpdateProcessorUpdateExecutionFactory. create(UpdateRequest updateRequest, Dataset dataset, QuerySolution inputBinding)Create an UpdateProcessor appropriate to the datasetGraph, or null if no available factory to make an UpdateProcessorstatic UpdateProcessorUpdateExecutionFactory. create(UpdateRequest updateRequest, Dataset dataset, QuerySolution inputBinding, Context context)Create an UpdateProcessor appropriate to the datasetGraph, or null if no available factory to make an UpdateProcessorstatic UpdateProcessorUpdateExecutionFactory. create(Update update, Dataset dataset, QuerySolution inputBinding)Create an UpdateProcessor appropriate to the datasetGraph, or null if no available factory to make an UpdateProcessorstatic UpdateProcessorStreamingUpdateExecutionFactory. createStreaming(Dataset dataset, QuerySolution inputBinding)Create an UpdateProcessor appropriate to the datasetGraph, or null if no available factory to make an UpdateProcessorstatic UpdateProcessorStreamingUpdateExecutionFactory. createStreaming(Dataset dataset, QuerySolution inputBinding, Context context)Create an UpdateProcessor appropriate to the datasetGraph, or null if no available factory to make an UpdateProcessorstatic voidUpdateAction. execute(UpdateRequest request, Dataset dataset, QuerySolution inputBinding)Execute SPARQL Update operations.static voidUpdateAction. execute(Update update, Dataset dataset, QuerySolution inputBinding)Execute a single SPARQL Update operation.static voidUpdateAction. parseExecute(java.lang.String updateString, Dataset dataset, QuerySolution inputBinding)Parse a string containing SPARQL Update operations, and execute the operations.static voidUpdateAction. parseExecute(UsingList usingList, DatasetGraph dataset, java.io.InputStream input, QuerySolution inputBinding, java.lang.String baseURI, Syntax syntax)Parse update operations into a GraphStore by parsing from an InputStream.static voidUpdateAction. parseExecute(UsingList usingList, DatasetGraph dataset, java.lang.String fileName, QuerySolution inputBinding, java.lang.String baseURI, Syntax syntax)Parse update operations into a GraphStore by reading it from a filestatic voidUpdateAction. readExecute(java.lang.String filename, Dataset dataset, QuerySolution inputBinding)Read a file containing SPARQL Update operations, and execute the operations.
-