Uses of Class
org.eclipse.rdf4j.query.MalformedQueryException
Packages that use MalformedQueryException
Package
Description
Interfaces and classes for handling queries and query results.
The rdf4j SPARQL 1.1 parser.
The Repository API: the main API for accessing rdf databases and SPARQL endpoints.
Abstract base classes and wrappers for the main Repository API interfaces.
A repository wrapper with convenience functions for handling contexts.
A repository wrapper which supports auto-loading of datasets specified in a query.
Wrapper/adapter base implementations.
A repository that serves as a proxy client for a remote repository on an RDF4J Server.
Repository implementation for local RDF databases that implement the SAIL SPI.
A
Repository
that serves as a SPARQL endpoint client.Helper classes for working with Repositories.
Forward-chaining inferencers, implemented as
StackableSail
s.A Sail implementation that supports full-text indexing via the Lucene API.
-
Uses of MalformedQueryException in org.eclipse.rdf4j.http.client
Methods in org.eclipse.rdf4j.http.client that throw MalformedQueryExceptionModifier and TypeMethodDescriptionprotected TupleQueryResult
SPARQLProtocolSession.getBackgroundTupleQueryResult
(org.apache.http.client.methods.HttpUriRequest method, WeakReference<?> callerRef) Deprecated.WeakReferenceinvalid input: '<'?> callerRef argument will be removedprotected void
SPARQLProtocolSession.getRDF
(org.apache.http.client.methods.HttpUriRequest method, RDFHandler handler, boolean requireContext) Parse the response in this thread using the providedRDFHandler
.protected GraphQueryResult
SPARQLProtocolSession.getRDFBackground
(org.apache.http.client.methods.HttpUriRequest method, boolean requireContext, WeakReference<?> callerRef) Deprecated.WeakReferenceinvalid input: '<'?> callerRef argument will be removedprotected void
SPARQLProtocolSession.getTupleQueryResult
(org.apache.http.client.methods.HttpUriRequest method, TupleQueryResultHandler handler) Parse the response in this thread using the providedTupleQueryResultHandler
.boolean
SPARQLProtocolSession.sendBooleanQuery
(QueryLanguage ql, String query, String baseURI, Dataset dataset, boolean includeInferred, int maxQueryTime, Binding... bindings) boolean
SPARQLProtocolSession.sendBooleanQuery
(QueryLanguage ql, String query, Dataset dataset, boolean includeInferred, Binding... bindings) SPARQLProtocolSession.sendGraphQuery
(QueryLanguage ql, String query, String baseURI, Dataset dataset, boolean includeInferred, int maxQueryTime, WeakReference<?> callerRef, Binding... bindings) Deprecated.WeakReferenceinvalid input: '<'?> callerRef argument will be removedvoid
SPARQLProtocolSession.sendGraphQuery
(QueryLanguage ql, String query, String baseURI, Dataset dataset, boolean includeInferred, int maxQueryTime, RDFHandler handler, Binding... bindings) SPARQLProtocolSession.sendGraphQuery
(QueryLanguage ql, String query, Dataset dataset, boolean includeInferred, WeakReference<?> callerRef, Binding... bindings) Deprecated.WeakReferenceinvalid input: '<'?> callerRef argument will be removedvoid
SPARQLProtocolSession.sendGraphQuery
(QueryLanguage ql, String query, Dataset dataset, boolean includeInferred, RDFHandler handler, Binding... bindings) private org.apache.http.HttpResponse
SPARQLProtocolSession.sendGraphQueryViaHttp
(org.apache.http.client.methods.HttpUriRequest method, boolean requireContext, Set<RDFFormat> rdfFormats) SPARQLProtocolSession.sendTupleQuery
(QueryLanguage ql, String query, String baseURI, Dataset dataset, boolean includeInferred, int maxQueryTime, WeakReference<?> callerRef, Binding... bindings) Deprecated.WeakReferenceinvalid input: '<'?> callerRef argument will be removedvoid
SPARQLProtocolSession.sendTupleQuery
(QueryLanguage ql, String query, String baseURI, Dataset dataset, boolean includeInferred, int maxQueryTime, TupleQueryResultHandler handler, Binding... bindings) SPARQLProtocolSession.sendTupleQuery
(QueryLanguage ql, String query, Dataset dataset, boolean includeInferred, WeakReference<?> callerRef, Binding... bindings) Deprecated.WeakReferenceinvalid input: '<'?> callerRef argument will be removedprivate org.apache.http.HttpResponse
SPARQLProtocolSession.sendTupleQueryViaHttp
(org.apache.http.client.methods.HttpUriRequest method, Set<QueryResultFormat> tqrFormats) Send the tuple query via HTTP and throws an exception in case anything goes wrong, i.e.void
SPARQLProtocolSession.sendUpdate
(QueryLanguage ql, String update, String baseURI, Dataset dataset, boolean includeInferred, int maxQueryTime, Binding... bindings) void
SPARQLProtocolSession.sendUpdate
(QueryLanguage ql, String update, String baseURI, Dataset dataset, boolean includeInferred, Binding... bindings) -
Uses of MalformedQueryException in org.eclipse.rdf4j.query
Subclasses of MalformedQueryException in org.eclipse.rdf4j.queryModifier and TypeClassDescriptionclass
An exception indicating that a string could not be parsed into an operation of the expected type by the parser. -
Uses of MalformedQueryException in org.eclipse.rdf4j.query.parser
Methods in org.eclipse.rdf4j.query.parser that throw MalformedQueryExceptionModifier and TypeMethodDescriptionstatic ParsedBooleanQuery
QueryParserUtil.parseBooleanQuery
(QueryLanguage ql, String query, String baseURI) Parses the supplied query into a query model.static ParsedGraphQuery
QueryParserUtil.parseGraphQuery
(QueryLanguage ql, String query, String baseURI) Parses the supplied query into a query model.static ParsedOperation
QueryParserUtil.parseOperation
(QueryLanguage ql, String operation, String baseURI) Parses the supplied operation into a query model.QueryParser.parseQuery
(String queryStr, String baseURI) static ParsedQuery
QueryParserUtil.parseQuery
(QueryLanguage ql, String query, String baseURI) Parses the supplied query into a query model.static ParsedTupleQuery
QueryParserUtil.parseTupleQuery
(QueryLanguage ql, String query, String baseURI) Parses the supplied query into a query model.QueryParser.parseUpdate
(String updateStr, String baseURI) static ParsedUpdate
QueryParserUtil.parseUpdate
(QueryLanguage ql, String update, String baseURI) Parses the supplied update operation into a query model. -
Uses of MalformedQueryException in org.eclipse.rdf4j.query.parser.sparql
Methods in org.eclipse.rdf4j.query.parser.sparql that throw MalformedQueryExceptionModifier and TypeMethodDescriptionprivate static void
WildcardProjectionProcessor.addQueryVars
(ASTWhereClause queryBody, Node wildcardNode) Deprecated.ConstructorBuilder.buildConstructor
(TupleExpr bodyExpr, boolean distinct, boolean reduced) private TupleExpr
SPARQLParser.buildQueryModel
(Node qc) SPARQLParser.parseQuery
(String queryStr, String baseURI) SPARQLParser.parseUpdate
(String updateStr, String baseURI) static void
BaseDeclProcessor.process
(ASTOperationContainer qc, String externalBaseURI) Resolves relative URIs in the supplied query model using either the specified externalBaseURI or, if this parameter is null, the base URI specified in the query model itself.BlankNodeVarProcessor.process
(ASTOperationContainer qc) static Dataset
DatasetDeclProcessor.process
(ASTOperationContainer qc) Extracts a SPARQLDataset
from an ASTQueryContainer, if one is contained.PrefixDeclProcessor.process
(ASTOperationContainer qc, Map<String, String> customDefaultPrefixes) Processes prefix declarations in queries.static void
StringEscapesProcessor.process
(ASTOperationContainer qc) Processes escape sequences in ASTString objects.static void
WildcardProjectionProcessor.process
(ASTOperationContainer container) Deprecated. -
Uses of MalformedQueryException in org.eclipse.rdf4j.repository
Methods in org.eclipse.rdf4j.repository that throw MalformedQueryExceptionModifier and TypeMethodDescriptiondefault BooleanQuery
RepositoryConnection.prepareBooleanQuery
(String query) Prepares SPARQL queries that return true or false, that is, SPARQL ASK queries.RepositoryConnection.prepareBooleanQuery
(QueryLanguage ql, String query) Prepares queries that return true or false.RepositoryConnection.prepareBooleanQuery
(QueryLanguage ql, String query, String baseURI) Prepares queries that return true or false.default GraphQuery
RepositoryConnection.prepareGraphQuery
(String query) Prepares SPARQL queries that produce RDF graphs, that is, SPARQL CONSTRUCT or DESCRIBE queries.RepositoryConnection.prepareGraphQuery
(QueryLanguage ql, String query) Prepares queries that produce RDF graphs.RepositoryConnection.prepareGraphQuery
(QueryLanguage ql, String query, String baseURI) Prepares queries that produce RDF graphs.default Query
RepositoryConnection.prepareQuery
(String query) Prepares a SPARQL query for evaluation on this repository (optional operation).RepositoryConnection.prepareQuery
(QueryLanguage ql, String query) Prepares a query for evaluation on this repository (optional operation).RepositoryConnection.prepareQuery
(QueryLanguage ql, String query, String baseURI) Prepares a query for evaluation on this repository (optional operation).default TupleQuery
RepositoryConnection.prepareTupleQuery
(String query) Prepares a SPARQL query that produces sets of value tuples, that is a SPARQL SELECT query.RepositoryConnection.prepareTupleQuery
(QueryLanguage ql, String query) Prepares a query that produces sets of value tuples.RepositoryConnection.prepareTupleQuery
(QueryLanguage ql, String query, String baseURI) Prepares a query that produces sets of value tuples.default Update
RepositoryConnection.prepareUpdate
(String update) Prepares a SPARQL Update operation.RepositoryConnection.prepareUpdate
(QueryLanguage ql, String update) Prepares an Update operation.RepositoryConnection.prepareUpdate
(QueryLanguage ql, String update, String baseURI) Prepares an Update operation. -
Uses of MalformedQueryException in org.eclipse.rdf4j.repository.base
Methods in org.eclipse.rdf4j.repository.base that throw MalformedQueryExceptionModifier and TypeMethodDescriptionAbstractRepositoryConnection.prepareBooleanQuery
(QueryLanguage ql, String query) RepositoryConnectionWrapper.prepareBooleanQuery
(QueryLanguage ql, String query, String baseURI) AbstractRepositoryConnection.prepareGraphQuery
(QueryLanguage ql, String query) RepositoryConnectionWrapper.prepareGraphQuery
(QueryLanguage ql, String query, String baseURI) AbstractRepositoryConnection.prepareQuery
(QueryLanguage ql, String query) RepositoryConnectionWrapper.prepareQuery
(QueryLanguage ql, String query, String baseURI) AbstractRepositoryConnection.prepareTupleQuery
(QueryLanguage ql, String query) RepositoryConnectionWrapper.prepareTupleQuery
(QueryLanguage ql, String query, String baseURI) AbstractRepositoryConnection.prepareUpdate
(QueryLanguage ql, String update) RepositoryConnectionWrapper.prepareUpdate
(QueryLanguage ql, String update, String baseURI) -
Uses of MalformedQueryException in org.eclipse.rdf4j.repository.contextaware
Methods in org.eclipse.rdf4j.repository.contextaware that throw MalformedQueryExceptionModifier and TypeMethodDescriptionContextAwareConnection.prepareBooleanQuery
(QueryLanguage ql, String query) ContextAwareConnection.prepareBooleanQuery
(QueryLanguage ql, String query, String baseURI) ContextAwareConnection.prepareGraphQuery
(String query) ContextAwareConnection.prepareGraphQuery
(QueryLanguage ql, String query) ContextAwareConnection.prepareGraphQuery
(QueryLanguage ql, String query, String baseURI) ContextAwareConnection.prepareQuery
(String query) ContextAwareConnection.prepareQuery
(QueryLanguage ql, String query) ContextAwareConnection.prepareQuery
(QueryLanguage ql, String query, String baseURI) ContextAwareConnection.prepareTupleQuery
(String query) ContextAwareConnection.prepareTupleQuery
(QueryLanguage ql, String query) ContextAwareConnection.prepareTupleQuery
(QueryLanguage ql, String query, String baseURI) ContextAwareConnection.prepareUpdate
(String query) ContextAwareConnection.prepareUpdate
(QueryLanguage ql, String query) ContextAwareConnection.prepareUpdate
(QueryLanguage ql, String update, String baseURI) -
Uses of MalformedQueryException in org.eclipse.rdf4j.repository.dataset
Methods in org.eclipse.rdf4j.repository.dataset that throw MalformedQueryExceptionModifier and TypeMethodDescriptionDatasetRepositoryConnection.prepareBooleanQuery
(QueryLanguage ql, String query, String baseURI) DatasetRepositoryConnection.prepareGraphQuery
(QueryLanguage ql, String query, String baseURI) DatasetRepositoryConnection.prepareQuery
(QueryLanguage ql, String query, String baseURI) DatasetRepositoryConnection.prepareTupleQuery
(QueryLanguage ql, String query, String baseURI) -
Uses of MalformedQueryException in org.eclipse.rdf4j.repository.event.base
Methods in org.eclipse.rdf4j.repository.event.base that throw MalformedQueryExceptionModifier and TypeMethodDescriptionInterceptingRepositoryConnectionWrapper.prepareUpdate
(QueryLanguage ql, String update, String baseURI) NotifyingRepositoryConnectionWrapper.prepareUpdate
(QueryLanguage ql, String update, String baseURI) -
Uses of MalformedQueryException in org.eclipse.rdf4j.repository.http
Methods in org.eclipse.rdf4j.repository.http that return MalformedQueryExceptionModifier and TypeMethodDescriptionHTTPQueryEvaluationException.getCauseAsMalformedQueryException()
HTTPUpdateExecutionException.getCauseAsMalformedQueryException()
Methods in org.eclipse.rdf4j.repository.http that throw MalformedQueryExceptionModifier and TypeMethodDescriptionHTTPRepositoryConnection.prepareUpdate
(QueryLanguage ql, String update, String baseURI) -
Uses of MalformedQueryException in org.eclipse.rdf4j.repository.sail
Methods in org.eclipse.rdf4j.repository.sail that throw MalformedQueryExceptionModifier and TypeMethodDescriptionSailRepositoryConnection.prepareBooleanQuery
(QueryLanguage ql, String queryString, String baseURI) SailRepositoryConnection.prepareGraphQuery
(QueryLanguage ql, String queryString, String baseURI) SailRepositoryConnection.prepareQuery
(QueryLanguage ql, String queryString, String baseURI) SailRepositoryConnection.prepareTupleQuery
(QueryLanguage ql, String queryString, String baseURI) SailRepositoryConnection.prepareUpdate
(QueryLanguage ql, String update, String baseURI) -
Uses of MalformedQueryException in org.eclipse.rdf4j.repository.sparql
Methods in org.eclipse.rdf4j.repository.sparql that throw MalformedQueryExceptionModifier and TypeMethodDescriptionprivate RepositoryResult
<Statement> SPARQLConnection.getStatementGeneral
(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts) private RepositoryResult
<Statement> SPARQLConnection.getStatementsQuadMode
(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts) SPARQLConnection.prepareBooleanQuery
(QueryLanguage ql, String query, String base) SPARQLConnection.prepareGraphQuery
(QueryLanguage ql, String query, String base) SPARQLConnection.prepareQuery
(QueryLanguage ql, String query, String base) SPARQLConnection.prepareTupleQuery
(QueryLanguage ql, String query, String base) SPARQLConnection.prepareUpdate
(QueryLanguage ql, String update, String baseURI) -
Uses of MalformedQueryException in org.eclipse.rdf4j.repository.util
Methods in org.eclipse.rdf4j.repository.util that throw MalformedQueryExceptionModifier and TypeMethodDescriptionstatic <T> T
Repositories.graphQuery
(Repository repository, String query, Function<GraphQueryResult, T> processFunction) Performs a SPARQL Construct or Describe query on the given Repository within a transaction and passes the results to the givenFunction
with the result from the function returned by the method.static void
Repositories.graphQuery
(Repository repository, String query, RDFHandler handler) Performs a SPARQL Construct or Describe query on the given Repository within a transaction and passes the results to the givenRDFHandler
.static <T> T
Repositories.graphQueryNoTransaction
(Repository repository, String query, Function<GraphQueryResult, T> processFunction) Performs a SPARQL Construct or Describe query on the given Repository without opening a transaction and passes the results to the givenFunction
with the result from the function returned by the method.static void
Repositories.graphQueryNoTransaction
(Repository repository, String query, RDFHandler handler) Performs a SPARQL Construct or Describe query on the given Repository without opening a transaction and passes the results to the givenRDFHandler
.static <T> T
Repositories.tupleQuery
(Repository repository, String query, Function<TupleQueryResult, T> processFunction) Performs a SPARQL Select query on the given Repository within a transaction and passes the results to the givenFunction
with the result from the function returned by the method.static void
Repositories.tupleQuery
(Repository repository, String query, TupleQueryResultHandler handler) Performs a SPARQL Select query on the given Repository within a transaction and passes the results to the givenTupleQueryResultHandler
.static <T> T
Repositories.tupleQueryNoTransaction
(Repository repository, String query, Function<TupleQueryResult, T> processFunction) Performs a SPARQL Select query on the given Repository without opening a transaction and passes the results to the givenFunction
with the result from the function returned by the method.static void
Repositories.tupleQueryNoTransaction
(Repository repository, String query, TupleQueryResultHandler handler) Performs a SPARQL Select query on the given Repository without opening a transaction and passes the results to the givenTupleQueryResultHandler
. -
Uses of MalformedQueryException in org.eclipse.rdf4j.sail.inferencer.fc
Methods in org.eclipse.rdf4j.sail.inferencer.fc that throw MalformedQueryExceptionModifier and TypeMethodDescriptionfinal void
CustomGraphQueryInferencer.setFields
(QueryLanguage language, String queryText, String matcherText) Called in order to set all the fields needed for the inferencer to function.Constructors in org.eclipse.rdf4j.sail.inferencer.fc that throw MalformedQueryExceptionModifierConstructorDescriptionCustomGraphQueryInferencer
(QueryLanguage language, String queryText, String matcherText) Create a new custom inferencer.CustomGraphQueryInferencer
(NotifyingSail baseSail, QueryLanguage language, String queryText, String matcherText) Create a new custom inferencer. -
Uses of MalformedQueryException in org.eclipse.rdf4j.sail.inferencer.fc.config
Methods in org.eclipse.rdf4j.sail.inferencer.fc.config that throw MalformedQueryExceptionModifier and TypeMethodDescriptionstatic String
CustomGraphQueryInferencerConfig.buildMatcherQueryFromRuleQuery
(QueryLanguage language, String ruleQuery) -
Uses of MalformedQueryException in org.eclipse.rdf4j.sail.lucene
Methods in org.eclipse.rdf4j.sail.lucene that throw MalformedQueryExceptionModifier and TypeMethodDescriptionprotected abstract Iterable
<? extends DocumentDistance> AbstractSearchIndex.geoQuery
(IRI geoProperty, org.locationtech.spatial4j.shape.Point p, IRI units, double distance, String distanceVar, Var context) protected abstract Iterable
<? extends DocumentResult> AbstractSearchIndex.geoRelationQuery
(String relation, IRI geoProperty, String wkt, Var context) protected abstract Iterable
<? extends DocumentScore>