Uses of Class
org.eclipse.rdf4j.query.QueryEvaluationException
-
Packages that use QueryEvaluationException 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 QueryEvaluationException in org.eclipse.rdf4j.query
Subclasses of QueryEvaluationException in org.eclipse.rdf4j.query Modifier and Type Class Description classQueryInterruptedExceptionAn exception indicating that the evaluation of a query has been interrupted, for example because it took too long to complete.Methods in org.eclipse.rdf4j.query that throw QueryEvaluationException Modifier and Type Method Description static <T> List<T>QueryResults. asList(QueryResult<T> queryResult)Get a List containing all elements obtained from the specifiedQueryResult.static org.eclipse.rdf4j.model.ModelQueryResults. asModel(org.eclipse.rdf4j.common.iteration.CloseableIteration<? extends org.eclipse.rdf4j.model.Statement,? extends org.eclipse.rdf4j.common.exception.RDF4JException> iteration)Get aModelcontaining all elements obtained from the specified query result.static org.eclipse.rdf4j.model.ModelQueryResults. asModel(org.eclipse.rdf4j.common.iteration.CloseableIteration<? extends org.eclipse.rdf4j.model.Statement,? extends org.eclipse.rdf4j.common.exception.RDF4JException> iteration, org.eclipse.rdf4j.model.ModelFactory modelFactory)Get aModelcontaining all elements obtained from the specified query result.static <T> Set<T>QueryResults. asSet(QueryResult<T> queryResult)Get a Set containing all elements obtained from the specifiedQueryResult.static booleanQueryResults. equals(GraphQueryResult result1, GraphQueryResult result2)Compares two graph query results and returnstrueif they are equal.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.booleanBooleanQuery. evaluate()GraphQueryResultGraphQuery. evaluate()voidGraphQuery. evaluate(RDFHandler handler)TupleQueryResultTupleQuery. evaluate()voidTupleQuery. evaluate(TupleQueryResultHandler handler)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.List<String>TupleQueryResult. getBindingNames()Gets the names of the bindings, in order of projection.Map<String,String>GraphQueryResult. getNamespaces()Retrieves relevant namespaces from the query result.booleanQueryResult. hasNext()Returnstrueif the query result has more elements.static booleanQueryResults. isSubset(TupleQueryResult tqr1, TupleQueryResult tqr2)TQueryResult. next()Returns the next element in the query result.static voidQueryResults. report(GraphQueryResult graphQueryResult, RDFHandler rdfHandler)Reports a graph query result to anRDFHandler.static voidQueryResults. report(TupleQueryResult tqr, QueryResultHandler handler)Reports a tuple query result to aTupleQueryResultHandler.static org.eclipse.rdf4j.model.StatementQueryResults. singleResult(GraphQueryResult result)Returns a single element from the query result.The QueryResult is automatically closed by this method.static BindingSetQueryResults. singleResult(TupleQueryResult result)Returns a single element from the query result.The QueryResult is automatically closed by this method. -
Uses of QueryEvaluationException in org.eclipse.rdf4j.query.dawg
Methods in org.eclipse.rdf4j.query.dawg that throw QueryEvaluationException Modifier and Type Method Description static org.eclipse.rdf4j.model.ModelDAWGTestResultSetUtil. toGraph(TupleQueryResult tqr) -
Uses of QueryEvaluationException in org.eclipse.rdf4j.query.impl
Methods in org.eclipse.rdf4j.query.impl that return QueryEvaluationException Modifier and Type Method Description protected QueryEvaluationExceptionQueueCursor. convert(Exception e)Methods in org.eclipse.rdf4j.query.impl that throw QueryEvaluationException Modifier and Type Method Description List<String>IteratingTupleQueryResult. getBindingNames()Deprecated.protected voidBackgroundGraphResult. handleClose()Deprecated.Constructor parameters in org.eclipse.rdf4j.query.impl with type arguments of type QueryEvaluationException Constructor Description GraphQueryResultImpl(Map<String,String> namespaces, org.eclipse.rdf4j.common.iteration.CloseableIteration<? extends org.eclipse.rdf4j.model.Statement,? extends QueryEvaluationException> statementIter)Deprecated.IteratingGraphQueryResult(Map<String,String> namespaces, org.eclipse.rdf4j.common.iteration.CloseableIteration<? extends org.eclipse.rdf4j.model.Statement,? extends QueryEvaluationException> statementIter)Deprecated.IteratingTupleQueryResult(List<String> bindingNames, org.eclipse.rdf4j.common.iteration.CloseableIteration<? extends BindingSet,QueryEvaluationException> bindingSetIter)Deprecated.Creates a query result object with the supplied binding names.TupleQueryResultImpl(List<String> bindingNames, org.eclipse.rdf4j.common.iteration.CloseableIteration<? extends BindingSet,QueryEvaluationException> bindingSetIter)Deprecated.Constructors in org.eclipse.rdf4j.query.impl that throw QueryEvaluationException Constructor Description MutableTupleQueryResult(TupleQueryResult tqr)
-