Uses of Interface
org.eclipse.rdf4j.query.TupleQueryResult
-
Packages that use TupleQueryResult Package Description org.eclipse.rdf4j.query Interfaces and classes for handling queries and query results.org.eclipse.rdf4j.query.dawg Functionality to convert tuple query results to and from the Data Access Working Group Test Result Set RDF Vocabularyorg.eclipse.rdf4j.query.impl -
-
Uses of TupleQueryResult in org.eclipse.rdf4j.query
Methods in org.eclipse.rdf4j.query that return TupleQueryResult Modifier and Type Method Description static TupleQueryResultQueryResults. distinctResults(TupleQueryResult queryResult)Returns aTupleQueryResultthat filters out any duplicate solutions from the supplied queryResult.TupleQueryResultTupleQuery. evaluate()static TupleQueryResultQueryResults. limitResults(TupleQueryResult queryResult, long limit, long offset)Returns aTupleQueryResultthat returns at most the specified maximum number of solutions, starting at the supplied offset.Methods in org.eclipse.rdf4j.query with parameters of type TupleQueryResult Modifier and Type Method Description static TupleQueryResultQueryResults. distinctResults(TupleQueryResult queryResult)Returns aTupleQueryResultthat filters out any duplicate solutions from the supplied queryResult.static booleanQueryResults. equals(TupleQueryResult tqr1, TupleQueryResult tqr2)Compares two tuple query results and returnstrueif they are equal.Tuple query results are equal if they contain the same set ofBindingSets and have the same headers.static List<org.eclipse.rdf4j.model.Value>QueryResults. getAllValues(TupleQueryResult result, String var)Returns a list of values of a particular variable out of the QueryResult.static booleanQueryResults. isSubset(TupleQueryResult tqr1, TupleQueryResult tqr2)static TupleQueryResultQueryResults. limitResults(TupleQueryResult queryResult, long limit, long offset)Returns aTupleQueryResultthat returns at most the specified maximum number of solutions, starting at the supplied offset.static voidQueryResults. report(TupleQueryResult tqr, QueryResultHandler handler)Reports a tuple query result to aTupleQueryResultHandler.static BindingSetQueryResults. singleResult(TupleQueryResult result)Returns a single element from the query result.The QueryResult is automatically closed by this method. -
Uses of TupleQueryResult in org.eclipse.rdf4j.query.dawg
Methods in org.eclipse.rdf4j.query.dawg that return TupleQueryResult Modifier and Type Method Description static TupleQueryResultDAWGTestResultSetUtil. toTupleQueryResult(Iterable<? extends org.eclipse.rdf4j.model.Statement> dawgGraph)Methods in org.eclipse.rdf4j.query.dawg with parameters of type TupleQueryResult Modifier and Type Method Description static org.eclipse.rdf4j.model.ModelDAWGTestResultSetUtil. toGraph(TupleQueryResult tqr) -
Uses of TupleQueryResult in org.eclipse.rdf4j.query.impl
Classes in org.eclipse.rdf4j.query.impl that implement TupleQueryResult Modifier and Type Class Description classIteratingTupleQueryResultDeprecated.classMutableTupleQueryResultAn implementation of theTupleQueryResultinterface that stores the complete query result in memory.classTupleQueryResultImplDeprecated.UseIteratingTupleQueryResultinstead.Methods in org.eclipse.rdf4j.query.impl that return TupleQueryResult Modifier and Type Method Description TupleQueryResultTupleQueryResultBuilder. getQueryResult()Constructors in org.eclipse.rdf4j.query.impl with parameters of type TupleQueryResult Constructor Description MutableTupleQueryResult(TupleQueryResult tqr)
-