Uses of Class
org.eclipse.rdf4j.repository.RepositoryResult
-
Packages that use RepositoryResult Package Description 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.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.sail.shacl A Sail implementation for SHACL constraint checking.org.eclipse.rdf4j.sail.shacl.wrapper.shape -
-
Uses of RepositoryResult in org.eclipse.rdf4j.repository
Methods in org.eclipse.rdf4j.repository that return RepositoryResult Modifier and Type Method Description RepositoryResult<Resource>
RepositoryConnection. getContextIDs()
Gets all resources that are used as content identifiers.RepositoryResult<Namespace>
RepositoryConnection. getNamespaces()
Gets all declared namespaces as a RepositoryResult ofNamespace
objects.RepositoryResult<Statement>
RepositoryConnection. getStatements(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts)
Gets all statements with a specific subject, predicate and/or object from the repository.default RepositoryResult<Statement>
RepositoryConnection. getStatements(Resource subj, IRI pred, Value obj, Resource... contexts)
Gets all statements with a specific subject, predicate and/or object from the repository.Methods in org.eclipse.rdf4j.repository with parameters of type RepositoryResult Modifier and Type Method Description default void
RepositoryConnection. add(RepositoryResult<Statement> statements, Resource... contexts)
Adds the supplied statements to this repository, optionally to one or more named contexts.default void
RepositoryConnection. remove(RepositoryResult<Statement> statements, Resource... contexts)
Removes the supplied statements from a specific context in this repository, ignoring any context information carried by the statements themselves. -
Uses of RepositoryResult in org.eclipse.rdf4j.repository.base
Methods in org.eclipse.rdf4j.repository.base that return RepositoryResult Modifier and Type Method Description RepositoryResult<Resource>
RepositoryConnectionWrapper. getContextIDs()
RepositoryResult<Namespace>
RepositoryConnectionWrapper. getNamespaces()
RepositoryResult<Statement>
RepositoryConnectionWrapper. getStatements(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts)
Methods in org.eclipse.rdf4j.repository.base with parameters of type RepositoryResult Modifier and Type Method Description protected void
RepositoryConnectionWrapper. exportStatements(RepositoryResult<Statement> stIter, RDFHandler handler)
Exports all statements contained in the supplied statement iterator and all relevant namespace information to the supplied RDFHandler. -
Uses of RepositoryResult in org.eclipse.rdf4j.repository.contextaware
Methods in org.eclipse.rdf4j.repository.contextaware that return RepositoryResult Modifier and Type Method Description RepositoryResult<Statement>
ContextAwareConnection. getStatements(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts)
RepositoryResult<Statement>
ContextAwareConnection. getStatements(Resource subj, IRI pred, Value obj, Resource... contexts)
Gets all statements with a specific subject, predicate and/or object from the repository. -
Uses of RepositoryResult in org.eclipse.rdf4j.repository.http
Methods in org.eclipse.rdf4j.repository.http that return RepositoryResult Modifier and Type Method Description protected <E> RepositoryResult<E>
HTTPRepositoryConnection. createRepositoryResult(java.lang.Iterable<? extends E> elements)
Creates a RepositoryResult for the supplied element set.RepositoryResult<Resource>
HTTPRepositoryConnection. getContextIDs()
RepositoryResult<Namespace>
HTTPRepositoryConnection. getNamespaces()
RepositoryResult<Statement>
HTTPRepositoryConnection. getStatements(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts)
-
Uses of RepositoryResult in org.eclipse.rdf4j.repository.sail
Methods in org.eclipse.rdf4j.repository.sail that return RepositoryResult Modifier and Type Method Description protected <E> RepositoryResult<E>
SailRepositoryConnection. createRepositoryResult(CloseableIteration<? extends E,SailException> sailIter)
Wraps a CloseableIteration coming from a Sail in a RepositoryResult object, applying the required conversionsRepositoryResult<Resource>
SailRepositoryConnection. getContextIDs()
RepositoryResult<Namespace>
SailRepositoryConnection. getNamespaces()
RepositoryResult<Statement>
SailRepositoryConnection. getStatements(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts)
-
Uses of RepositoryResult in org.eclipse.rdf4j.repository.sparql
Methods in org.eclipse.rdf4j.repository.sparql that return RepositoryResult Modifier and Type Method Description RepositoryResult<Resource>
SPARQLConnection. getContextIDs()
RepositoryResult<Namespace>
SPARQLConnection. getNamespaces()
private RepositoryResult<Statement>
SPARQLConnection. getStatementGeneral(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts)
RepositoryResult<Statement>
SPARQLConnection. getStatements(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)
private RepositoryResult<Statement>
SPARQLConnection. getStatementsSingleTriple(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts)
-
Uses of RepositoryResult in org.eclipse.rdf4j.sail.shacl
Methods in org.eclipse.rdf4j.sail.shacl with parameters of type RepositoryResult Modifier and Type Method Description (package private) static CloseableIteration<Statement,SailException>
ConnectionHelper. getCloseableIteration(RepositoryResult<Statement> repositoryResults)
-
Uses of RepositoryResult in org.eclipse.rdf4j.sail.shacl.wrapper.shape
Methods in org.eclipse.rdf4j.sail.shacl.wrapper.shape with parameters of type RepositoryResult Modifier and Type Method Description private static Value
ShapeSourceHelper. getObject(RepositoryResult<Statement> iteration)
-