Uses of Interface
org.eclipse.rdf4j.query.Query
-
Packages that use Query Package Description org.eclipse.rdf4j.http.client.query org.eclipse.rdf4j.query Interfaces and classes for handling queries and query results.org.eclipse.rdf4j.query.algebra.evaluation org.eclipse.rdf4j.query.impl org.eclipse.rdf4j.query.parser.impl org.eclipse.rdf4j.repository The Repository API: the main API for accessing rdf databases and SPARQL endpoints.org.eclipse.rdf4j.repository.base Abstract base classes and wrappers for the main Repository API interfaces.org.eclipse.rdf4j.repository.contextaware A repository wrapper with convenience functions for handling contexts.org.eclipse.rdf4j.repository.dataset A repository wrapper which supports auto-loading of datasets specified in a query.org.eclipse.rdf4j.repository.http A repository that serves as a proxy client for a remote repository on an RDF4J Server.org.eclipse.rdf4j.repository.sail Repository implementation for local RDF databases that implement the SAIL SPI.org.eclipse.rdf4j.repository.sparql ARepository
that serves as a SPARQL endpoint client.org.eclipse.rdf4j.repository.sparql.query org.eclipse.rdf4j.spin.function Core functions required for SPIN. -
-
Uses of Query in org.eclipse.rdf4j.http.client.query
Classes in org.eclipse.rdf4j.http.client.query that implement Query Modifier and Type Class Description class
AbstractHTTPQuery
Base class for anyQuery
operation over HTTP. -
Uses of Query in org.eclipse.rdf4j.query
Subinterfaces of Query in org.eclipse.rdf4j.query Modifier and Type Interface Description interface
BooleanQuery
interface
GraphQuery
interface
TupleQuery
-
Uses of Query in org.eclipse.rdf4j.query.algebra.evaluation
Classes in org.eclipse.rdf4j.query.algebra.evaluation that implement Query Modifier and Type Class Description (package private) class
AbstractQueryPreparer.BooleanQueryImpl
(package private) class
AbstractQueryPreparer.GraphQueryImpl
(package private) class
AbstractQueryPreparer.TupleQueryImpl
-
Uses of Query in org.eclipse.rdf4j.query.impl
Classes in org.eclipse.rdf4j.query.impl that implement Query Modifier and Type Class Description class
AbstractParserQuery
class
AbstractQuery
Abstract super class of all query types. -
Uses of Query in org.eclipse.rdf4j.query.parser.impl
Classes in org.eclipse.rdf4j.query.parser.impl that implement Query Modifier and Type Class Description class
AbstractParserQuery
-
Uses of Query in org.eclipse.rdf4j.repository
Methods in org.eclipse.rdf4j.repository that return Query Modifier and Type Method Description default Query
RepositoryConnection. prepareQuery(java.lang.String query)
Prepares a SPARQL query for evaluation on this repository (optional operation).Query
RepositoryConnection. prepareQuery(QueryLanguage ql, java.lang.String query)
Prepares a query for evaluation on this repository (optional operation).Query
RepositoryConnection. prepareQuery(QueryLanguage ql, java.lang.String query, java.lang.String baseURI)
Prepares a query for evaluation on this repository (optional operation). -
Uses of Query in org.eclipse.rdf4j.repository.base
Methods in org.eclipse.rdf4j.repository.base that return Query Modifier and Type Method Description Query
AbstractRepositoryConnection. prepareQuery(QueryLanguage ql, java.lang.String query)
Query
RepositoryConnectionWrapper. prepareQuery(QueryLanguage ql, java.lang.String query, java.lang.String baseURI)
-
Uses of Query in org.eclipse.rdf4j.repository.contextaware
Methods in org.eclipse.rdf4j.repository.contextaware with type parameters of type Query Modifier and Type Method Description private <O extends Query>
OContextAwareConnection. initQuery(O query)
Methods in org.eclipse.rdf4j.repository.contextaware that return Query Modifier and Type Method Description Query
ContextAwareConnection. prepareQuery(java.lang.String query)
Query
ContextAwareConnection. prepareQuery(QueryLanguage ql, java.lang.String query)
Query
ContextAwareConnection. prepareQuery(QueryLanguage ql, java.lang.String query, java.lang.String baseURI)
-
Uses of Query in org.eclipse.rdf4j.repository.dataset
Classes in org.eclipse.rdf4j.repository.dataset that implement Query Modifier and Type Class Description (package private) class
DatasetBooleanQuery
(package private) class
DatasetGraphQuery
(package private) class
DatasetQuery
(package private) class
DatasetTupleQuery
Methods in org.eclipse.rdf4j.repository.dataset that return Query Modifier and Type Method Description Query
DatasetRepositoryConnection. prepareQuery(QueryLanguage ql, java.lang.String query, java.lang.String baseURI)
private Query
DatasetRepositoryConnection. wrap(SailQuery q)
-
Uses of Query in org.eclipse.rdf4j.repository.http
Classes in org.eclipse.rdf4j.repository.http that implement Query Modifier and Type Class Description class
HTTPBooleanQuery
TupleQuery specific to the HTTP protocol.class
HTTPGraphQuery
GraphQuery implementation specific to the HTTP protocol.class
HTTPTupleQuery
TupleQuery specific to the HTTP protocol.Methods in org.eclipse.rdf4j.repository.http that return Query Modifier and Type Method Description Query
HTTPRepositoryConnection. prepareQuery(QueryLanguage ql, java.lang.String queryString, java.lang.String baseURI)
Prepares a for evaluation on this repository. -
Uses of Query in org.eclipse.rdf4j.repository.sail
Classes in org.eclipse.rdf4j.repository.sail that implement Query Modifier and Type Class Description class
SailBooleanQuery
class
SailGraphQuery
class
SailQuery
class
SailTupleQuery
-
Uses of Query in org.eclipse.rdf4j.repository.sparql
Methods in org.eclipse.rdf4j.repository.sparql that return Query Modifier and Type Method Description Query
SPARQLConnection. prepareQuery(QueryLanguage ql, java.lang.String query, java.lang.String base)
Methods in org.eclipse.rdf4j.repository.sparql with parameters of type Query Modifier and Type Method Description private void
SPARQLConnection. setBindings(Query query, Resource subj, IRI pred, Value obj, Resource... contexts)
-
Uses of Query in org.eclipse.rdf4j.repository.sparql.query
Classes in org.eclipse.rdf4j.repository.sparql.query that implement Query Modifier and Type Class Description class
SPARQLBooleanQuery
Parses boolean query response from remote stores.class
SPARQLGraphQuery
Parses RDF results in the background.class
SPARQLTupleQuery
Parses tuple results in the background. -
Uses of Query in org.eclipse.rdf4j.spin.function
Methods in org.eclipse.rdf4j.spin.function with parameters of type Query Modifier and Type Method Description protected static void
EvalFunction. addArguments(Query query, Value... args)
protected static void
AbstractSpinFunction. addBindings(Query query, Value... args)
private static void
SpinFunction. addBindings(Query query, java.util.List<Argument> arguments, Value... args)
private static void
SpinTupleFunction. addBindings(Query query, java.util.List<Argument> arguments, Value... args)
-