Uses of Interface
org.eclipse.rdf4j.rio.RDFHandler
Package
Description
A command line console tool for querying and updating local or remote RDF4J repositories.
Interfaces and classes for handling queries and query results.
Functionality to convert tuple query results to and from the
Data Access Working Group Test Result Set RDF Vocabulary
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 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.
Helper and utility classes for the
SailRepository
A
Repository
that serves as a SPARQL endpoint client.Helper classes for working with Repositories.
Rio: The RDF4J parser/writer API.
Parser/writer for the RDF4J binary RDF format.
Provides helpers classes for Rio.
Parser/writer for the JSON-L format.
Writer for the Notation-3 (N3) format.
Parser/writer for the N-Quads format.
Parser/writer for the N-Triples format.
Parser/writer for the RDF/JSON format.
Parser/writer for the RDF/XML format.
Pretty-printing for the RDF/XML format.
Parser/writer for the TriG format.
Parser/writer for the TriX format.
Parser/writer for the Turtle format.
See discussion at https://github.com/eclipse/rdf4j/issues/1262
Rdf4j-Spring OperationLog
-
Uses of RDFHandler in org.eclipse.rdf4j.benchmark.rio.util
Modifier and TypeClassDescriptionclass
Empty RDF Handler that provides aStatement
consumer that can be used with JMH BlackHole to avoid JVM (JIT Compiler) optimizationsModifier and TypeMethodDescriptionvoid
DataSetGenerator.generateStatements
(RDFHandler handler, int percentBNodes, int percentLiterals, int textMinLength, int textMaxLength, int totalStatements, boolean isTextOnly, boolean withContext) -
Uses of RDFHandler in org.eclipse.rdf4j.console
-
Uses of RDFHandler in org.eclipse.rdf4j.console.util
-
Uses of RDFHandler in org.eclipse.rdf4j.federated.endpoint
-
Uses of RDFHandler in org.eclipse.rdf4j.federated.structures
-
Uses of RDFHandler in org.eclipse.rdf4j.http.client
Modifier and TypeMethodDescriptionprotected void
SPARQLProtocolSession.getRDF
(org.apache.http.client.methods.HttpUriRequest method, RDFHandler handler, boolean requireContext) Parse the response in this thread using the providedRDFHandler
.void
RDF4JProtocolSession.getStatements
(Resource subj, IRI pred, Value obj, boolean includeInferred, RDFHandler handler, Resource... contexts) void
SPARQLProtocolSession.sendGraphQuery
(QueryLanguage ql, String query, String baseURI, Dataset dataset, boolean includeInferred, int maxQueryTime, RDFHandler handler, Binding... bindings) void
SPARQLProtocolSession.sendGraphQuery
(QueryLanguage ql, String query, Dataset dataset, boolean includeInferred, RDFHandler handler, Binding... bindings) -
Uses of RDFHandler in org.eclipse.rdf4j.query
Modifier and TypeMethodDescriptionvoid
GraphQuery.evaluate
(RDFHandler handler) static void
QueryResults.report
(GraphQueryResult graphQueryResult, RDFHandler rdfHandler) Reports a graph query result to anRDFHandler
. -
Uses of RDFHandler in org.eclipse.rdf4j.query.dawg
ModifierConstructorDescriptionDAWGTestResultSetWriter
(RDFHandler rdfHandler) DAWGTestResultSetWriter
(RDFHandler rdfHandler, ValueFactory vf) -
Uses of RDFHandler in org.eclipse.rdf4j.query.impl
-
Uses of RDFHandler in org.eclipse.rdf4j.repository
Modifier and TypeMethodDescriptionvoid
RepositoryConnection.export
(RDFHandler handler, Resource... contexts) Exports all explicit statements in the specified contexts to the supplied RDFHandler.void
RepositoryConnection.exportStatements
(Resource subj, IRI pred, Value obj, boolean includeInferred, RDFHandler handler, Resource... contexts) Exports all statements with a specific subject, predicate and/or object from the repository, optionally from the specified contexts. -
Uses of RDFHandler in org.eclipse.rdf4j.repository.base
Modifier and TypeMethodDescriptionvoid
AbstractRepositoryConnection.export
(RDFHandler handler, Resource... contexts) void
RepositoryConnectionWrapper.exportStatements
(Resource subj, IRI pred, Value obj, boolean includeInferred, RDFHandler handler, Resource... contexts) 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 RDFHandler in org.eclipse.rdf4j.repository.contextaware
Modifier and TypeMethodDescriptionvoid
ContextAwareConnection.export
(RDFHandler handler, Resource... contexts) void
ContextAwareConnection.exportStatements
(Resource subj, IRI pred, Value obj, boolean includeInferred, RDFHandler handler, Resource... contexts) void
ContextAwareConnection.exportStatements
(Resource subj, IRI pred, Value obj, RDFHandler handler, Resource... contexts) Exports all statements with a specific subject, predicate and/or object from the repository, optionally from the specified contexts. -
Uses of RDFHandler in org.eclipse.rdf4j.repository.http
-
Uses of RDFHandler in org.eclipse.rdf4j.repository.sail
Modifier and TypeMethodDescriptionvoid
SailGraphQuery.evaluate
(RDFHandler handler) void
SailRepositoryConnection.exportStatements
(Resource subj, IRI pred, Value obj, boolean includeInferred, RDFHandler handler, Resource... contexts) -
Uses of RDFHandler in org.eclipse.rdf4j.repository.sail.helpers
Modifier and TypeClassDescriptionclass
An RDFHandler that adds RDF data to a sail. -
Uses of RDFHandler in org.eclipse.rdf4j.repository.sparql
Modifier and TypeMethodDescriptionvoid
SPARQLConnection.exportStatements
(Resource subj, IRI pred, Value obj, boolean includeInferred, RDFHandler handler, Resource... contexts) -
Uses of RDFHandler in org.eclipse.rdf4j.repository.sparql.query
-
Uses of RDFHandler in org.eclipse.rdf4j.repository.util
Modifier and TypeClassDescriptionclass
An RDFHandler that adds RDF data to some RDF sink.class
An RDFHandler that adds RDF data to a repository.class
An RDFHandler that removes RDF data from a repository.Modifier and TypeMethodDescriptionstatic 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 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
.void
RDFLoader.load
(File file, String baseURI, RDFFormat dataFormat, RDFHandler rdfHandler) Parses RDF data from the specified file to the given RDFHandler.void
RDFLoader.load
(InputStream in, String baseURI, RDFFormat dataFormat, RDFHandler rdfHandler) Parses RDF data from an InputStream to the RDFHandler.void
RDFLoader.load
(Reader reader, String baseURI, RDFFormat dataFormat, RDFHandler rdfHandler) Parses RDF data from a Reader to the RDFHandler.void
RDFLoader.load
(URL url, String baseURI, RDFFormat dataFormat, RDFHandler rdfHandler) Parses the RDF data that can be found at the specified URL to the RDFHandler. -
Uses of RDFHandler in org.eclipse.rdf4j.rio
Modifier and TypeMethodDescriptionRDFParser.setRDFHandler
(RDFHandler handler) Sets the RDFHandler that will handle the parsed RDF data.static void
Rio.write
(Iterable<Statement> model, RDFHandler writer) Writes the given statements to the givenRDFHandler
.static void
Rio.write
(Statement statement, RDFHandler writer) Writes the given single statement to the givenRDFHandler
. -
Uses of RDFHandler in org.eclipse.rdf4j.rio.binary
-
Uses of RDFHandler in org.eclipse.rdf4j.rio.helpers
Modifier and TypeClassDescriptionclass
Base class forRDFHandler
s with dummy implementations of all methods.class
Base class forRDFWriter
s offering common functionality for RDF writers.class
AnRDFHandlerWrapper
that buffers statements internally and passes them to underlying handlers grouped by context, then subject, then predicate.class
A RDFHandler that can be used to collect reported statements in collections.class
Convenience base class for RDF handlers that wrap one or more other RDF handler.class
A RDFHandler that can be used to collect reported statements in collections.class
Modifier and TypeFieldDescriptionprotected RDFHandler
AbstractRDFParser.rdfHandler
The RDFHandler that will handle the parsed RDF.ModifierConstructorDescriptionBufferedGroupingRDFHandler
(int bufferSize, RDFHandler... handlers) Creates a new BufferedGroupedWriter that wraps the supplied handlers, using the supplied buffer size.BufferedGroupingRDFHandler
(RDFHandler... handlers) Creates a new BufferedGroupedWriter that wraps the supplied handlers, using the default buffer size.RDFHandlerWrapper
(ModelFactory modelFactory, RDFHandler... rdfHandlers) Creates a new RDFHandlerWrapper that wraps the supplied RDF handler(s).RDFHandlerWrapper
(RDFHandler... rdfHandlers) Creates a new RDFHandlerWrapper that wraps the supplied RDF handler(s).TimeLimitRDFHandler
(RDFHandler rdfHandler, long timeLimit) -
Uses of RDFHandler in org.eclipse.rdf4j.rio.jsonld
Modifier and TypeClassDescriptionclass
An RDFWriter that links toJSONLDInternalRDFParser
. -
Uses of RDFHandler in org.eclipse.rdf4j.rio.n3
Modifier and TypeClassDescriptionclass
An implementation of the RDFWriter interface that writes RDF documents in N3 format. -
Uses of RDFHandler in org.eclipse.rdf4j.rio.ndjsonld
-
Uses of RDFHandler in org.eclipse.rdf4j.rio.nquads
-
Uses of RDFHandler in org.eclipse.rdf4j.rio.ntriples
Modifier and TypeClassDescriptionclass
An implementation of the RDFWriter interface that writes RDF documents in N-Triples format. -
Uses of RDFHandler in org.eclipse.rdf4j.rio.rdfjson
-
Uses of RDFHandler in org.eclipse.rdf4j.rio.rdfxml
Modifier and TypeClassDescriptionclass
An implementation of the RDFWriter interface that writes RDF documents in XML-serialized RDF format. -
Uses of RDFHandler in org.eclipse.rdf4j.rio.rdfxml.util
Modifier and TypeClassDescriptionclass
An extension of RDFXMLWriter that outputs a more concise form of RDF/XML. -
Uses of RDFHandler in org.eclipse.rdf4j.rio.trig
Modifier and TypeClassDescriptionclass
An extension ofTurtleWriter
that writes RDF documents in TriG format by adding graph scopes to the Turtle document. -
Uses of RDFHandler in org.eclipse.rdf4j.rio.trigstar
Modifier and TypeClassDescriptionclass
An extension ofTriGWriter
that writes RDF-star documents in the TriG-star format by including the RDF-star triples. -
Uses of RDFHandler in org.eclipse.rdf4j.rio.trix
Modifier and TypeClassDescriptionclass
An implementation of the RDFWriter interface that writes RDF documents in TriX format. -
Uses of RDFHandler in org.eclipse.rdf4j.rio.turtle
Modifier and TypeClassDescriptionclass
Deprecated.class
An implementation of the RDFWriter interface that writes RDF documents in Turtle format. -
Uses of RDFHandler in org.eclipse.rdf4j.rio.turtlestar
Modifier and TypeClassDescriptionclass
An extension ofTurtleWriter
that writes RDF-star documents in the Turtle-star format by including the RDF-star triples. -
Uses of RDFHandler in org.eclipse.rdf4j.sail.inferencer.util
Modifier and TypeClassDescriptionclass
An RDFHandler that adds RDF data to a sail as inferred statements. -
Uses of RDFHandler in org.eclipse.rdf4j.spin
Modifier and TypeMethodDescriptionvoid
SpinRenderer.render
(ParsedBooleanQuery query, RDFHandler handler) void
SpinRenderer.render
(ParsedDescribeQuery query, RDFHandler handler) void
SpinRenderer.render
(ParsedGraphQuery query, RDFHandler handler) void
SpinRenderer.render
(ParsedOperation operation, RDFHandler handler) void
SpinRenderer.render
(ParsedQuery query, RDFHandler handler) void
SpinRenderer.render
(ParsedTupleQuery query, RDFHandler handler) void
SpinRenderer.render
(ParsedUpdate update, RDFHandler handler) -
Uses of RDFHandler in org.eclipse.rdf4j.spring.operationlog
-
Uses of RDFHandler in org.eclipse.rdf4j.spring.support.query
TurtleWriter
internally.