Uses of Interface
org.apache.jena.query.QuerySolution
Packages that use QuerySolution
Package
Description
ARQ - A query engine for Jena, implementing SPARQL.
-
Uses of QuerySolution in org.apache.jena.query
Classes in org.apache.jena.query that implement QuerySolutionModifier and TypeClassDescriptionclass
Implementation of QuerySolution that is backed by an in-memory map.Methods in org.apache.jena.query that return QuerySolutionModifier and TypeMethodDescriptionResultSet.next()
Moves onto the next result.ResultSet.nextSolution()
Moves onto the next result (legacy - use .next()).Methods in org.apache.jena.query that return types with arguments of type QuerySolutionModifier and TypeMethodDescriptionstatic List<QuerySolution>
Turn the result set into a java.util.ListMethods in org.apache.jena.query with parameters of type QuerySolutionModifier and TypeMethodDescriptionvoid
QuerySolutionMap.addAll
(QuerySolution other) Add all of the solutions from one QuerySolution into this QuerySolutionMapstatic QueryExecution
QueryExecutionFactory.create
(Query query, Dataset dataset, QuerySolution querySolution) Deprecated, for removal: This API element is subject to removal in a future version.static QueryExecution
QueryExecutionFactory.create
(Query query, org.apache.jena.rdf.model.Model model, QuerySolution querySolution) Deprecated, for removal: This API element is subject to removal in a future version.UseQueryExecution#model(model).query(query).substitution(querySolution).build()
.QueryExecutionDatasetBuilder.initialBinding
(QuerySolution querySolution) Deprecated, for removal: This API element is subject to removal in a future version.PreferQueryExecutionDatasetBuilder.substitution(QuerySolution)
which substitutes variables for values in the the query before execution.QueryExecutionBuilder.substitution
(QuerySolution querySolution) QueryExecutionDatasetBuilder.substitution
(QuerySolution querySolution) Method parameters in org.apache.jena.query with type arguments of type QuerySolutionModifier and TypeMethodDescriptionvoid
ResultSet.forEachRemaining
(Consumer<? super QuerySolution> action) -
Uses of QuerySolution in org.apache.jena.riot.resultset
Methods in org.apache.jena.riot.resultset that return QuerySolutionMethod parameters in org.apache.jena.riot.resultset with type arguments of type QuerySolutionModifier and TypeMethodDescriptionvoid
ResultSetOnClose.forEachRemaining
(Consumer<? super QuerySolution> action) -
Uses of QuerySolution in org.apache.jena.sparql.core
Classes in org.apache.jena.sparql.core that implement QuerySolutionModifier and TypeClassDescriptionclass
Implementation of QuerySolution that contains the canonicalization and casting code.class
A 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 QuerySolutionModifier and TypeMethodDescriptionResultSetCheckCondition.next()
Deprecated, for removal: This API element is subject to removal in a future version.ResultSetStream.next()
Moves onto the next result possibility.ResultSetCheckCondition.nextSolution()
Deprecated, for removal: This API element is subject to removal in a future version.ResultSetStream.nextSolution()
Moves onto the next result possibility.Method parameters in org.apache.jena.sparql.engine with type arguments of type QuerySolutionModifier and TypeMethodDescriptionvoid
ResultSetCheckCondition.forEachRemaining
(Consumer<? super QuerySolution> action) Deprecated, for removal: This API element is subject to removal in a future version.Attention: The check is only done once before the first consumer accept call.void
ResultSetStream.forEachRemaining
(Consumer<? super QuerySolution> action) -
Uses of QuerySolution in org.apache.jena.sparql.engine.binding
Methods in org.apache.jena.sparql.engine.binding with parameters of type QuerySolutionModifier and TypeMethodDescriptionstatic Binding
BindingLib.asBinding
(QuerySolution qSolution) Convert a query solution to a bindingstatic Binding
BindingLib.toBinding
(QuerySolution qSolution) -
Uses of QuerySolution in org.apache.jena.sparql.exec
Methods in org.apache.jena.sparql.exec with parameters of type QuerySolutionModifier and TypeMethodDescriptionQueryExecutionBuilderAdapter.substitution
(QuerySolution querySolution) UpdateExecutionBuilderAdapter.substitution
(QuerySolution querySolution) -
Uses of QuerySolution in org.apache.jena.sparql.exec.http
Methods in org.apache.jena.sparql.exec.http with parameters of type QuerySolutionModifier and TypeMethodDescriptionQueryExecutionHTTPBuilder.substitution
(QuerySolution querySolution) UpdateExecutionHTTPBuilder.substitution
(QuerySolution querySolution) -
Uses of QuerySolution in org.apache.jena.sparql.resultset
Methods in org.apache.jena.sparql.resultset that return QuerySolutionModifier and TypeMethodDescriptionResultSetMem.next()
Moves onto the next result possibility.ResultSetPeeking.next()
ResultSetWrapper.next()
ResultSetMem.nextSolution()
Moves onto the next result possibility.ResultSetPeeking.nextSolution()
ResultSetWrapper.nextSolution()
ResultSetMem.peek()
ResultSetPeekable.peek()
Peek at the next query solutionResultSetPeeking.peek()
Methods in org.apache.jena.sparql.resultset with parameters of type QuerySolutionModifier and TypeMethodDescriptionvoid
PlainFormat.finish
(QuerySolution qs) void
ResultSetProcessor.finish
(QuerySolution qs) Finish query solution (row in result set)void
PlainFormat.start
(QuerySolution qs) void
ResultSetProcessor.start
(QuerySolution qs) Start query solution (row in result set)Method parameters in org.apache.jena.sparql.resultset with type arguments of type QuerySolutionModifier and TypeMethodDescriptionvoid
ResultSetMem.forEachRemaining
(Consumer<? super QuerySolution> action) void
ResultSetPeeking.forEachRemaining
(Consumer<? super QuerySolution> action) void
ResultSetWrapper.forEachRemaining
(Consumer<? super QuerySolution> action) -
Uses of QuerySolution in org.apache.jena.update
Methods in org.apache.jena.update with parameters of type QuerySolutionModifier and TypeMethodDescriptionstatic UpdateProcessorStreaming
UpdateStreaming.createStreaming
(Dataset dataset, QuerySolution inputBinding) Deprecated, for removal: This API element is subject to removal in a future version.static void
UpdateAction.execute
(UpdateRequest request, Dataset dataset, QuerySolution inputBinding) Execute SPARQL Update operations.static void
UpdateAction.execute
(Update update, Dataset dataset, QuerySolution inputBinding) Execute a single SPARQL Update operation.UpdateExecutionDatasetBuilder.initialBinding
(QuerySolution querySolution) Deprecated, for removal: This API element is subject to removal in a future version.static void
UpdateAction.parseExecute
(String updateString, Dataset dataset, QuerySolution inputBinding) Parse a string containing SPARQL Update operations, and execute the operations.static void
UpdateAction.parseExecute
(UsingList usingList, DatasetGraph dataset, InputStream input, QuerySolution inputBinding, String baseURI, Syntax syntax) Parse update operations into a DatasetGraph by parsing from an InputStream.static void
UpdateAction.parseExecute
(UsingList usingList, DatasetGraph dataset, String fileName, QuerySolution inputBinding, String baseURI, Syntax syntax) Parse update operations into a DatasetGraph by reading it from a filestatic void
UpdateAction.readExecute
(String filename, Dataset dataset, QuerySolution inputBinding) Read a file containing SPARQL Update operations, and execute the operations.UpdateExecutionBuilder.substitution
(QuerySolution querySolution) UpdateExecutionDatasetBuilder.substitution
(QuerySolution querySolution)
QueryExecution.dataset(dataset).query(query).substitution(querySolution).build()
.