Package | Description |
---|---|
org.openrdf.http.client | |
org.openrdf.query |
Interfaces and classes for handling queries and query results.
|
org.openrdf.query.dawg |
Functionality to convert tuple query results to and from the
Data Access Working Group Test Result Set RDF Vocabulary
|
org.openrdf.repository |
The Repository API: the main API for handling Sesame repositories.
|
org.openrdf.repository.base | |
org.openrdf.repository.contextaware |
A repository wrapper with convenience functions for handling contexts.
|
org.openrdf.repository.http |
A repository that serves as a proxy client for a remote
repository on a Sesame Server.
|
org.openrdf.repository.sail |
Repository implementation for local RDF databases that
implement the SAIL API.
|
org.openrdf.repository.sail.helpers | |
org.openrdf.repository.sparql |
A repository that serves as a client for a SPARQL endpoint.
|
org.openrdf.repository.sparql.query | |
org.openrdf.repository.util | |
org.openrdf.rio |
General classes and interfaces for RDF parsers and RDF writers.
|
org.openrdf.rio.binary | |
org.openrdf.rio.helpers |
Provides helpers classes for Rio.
|
org.openrdf.rio.jsonld | |
org.openrdf.rio.n3 |
Writer for RDF in Notation 3/N3 format.
|
org.openrdf.rio.nquads |
Parser and writer for RDF in N-Quads format.
|
org.openrdf.rio.ntriples |
Parser and writer for RDF in N-Triples format.
|
org.openrdf.rio.rdfjson | |
org.openrdf.rio.rdfxml |
Parser and writer for XML-serialized RDF.
|
org.openrdf.rio.rdfxml.util | |
org.openrdf.rio.trig |
Parser and writer for RDF in TriG format.
|
org.openrdf.rio.trix |
Parser and writer for RDF in
TriX format.
|
org.openrdf.rio.turtle |
Parser and writer for RDF in Turtle format.
|
Modifier and Type | Class and Description |
---|---|
class |
BackgroundGraphResult
Provides concurrent access to statements as they are being parsed.
|
Modifier and Type | Method and Description |
---|---|
protected void |
SparqlSession.getRDF(org.apache.http.client.methods.HttpUriRequest method,
RDFHandler handler,
boolean requireContext)
Parse the response in this thread using the provided
RDFHandler . |
void |
SesameSession.getStatements(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
RDFHandler handler,
Resource... contexts) |
void |
SparqlSession.sendGraphQuery(QueryLanguage ql,
String query,
Dataset dataset,
boolean includeInferred,
RDFHandler handler,
Binding... bindings) |
void |
SparqlSession.sendGraphQuery(QueryLanguage ql,
String query,
String baseURI,
Dataset dataset,
boolean includeInferred,
int maxQueryTime,
RDFHandler handler,
Binding... bindings) |
Modifier and Type | Method and Description |
---|---|
void |
GraphQuery.evaluate(RDFHandler handler) |
static void |
QueryResults.report(GraphQueryResult gqr,
RDFHandler rdfHandler)
Reports a graph query result to an
RDFHandler . |
Modifier and Type | Class and Description |
---|---|
class |
DAWGTestBooleanParser |
class |
DAWGTestResultSetParser |
Constructor and Description |
---|
DAWGTestResultSetWriter(RDFHandler rdfHandler) |
DAWGTestResultSetWriter(RDFHandler rdfHandler,
ValueFactory vf) |
Modifier and Type | Method and Description |
---|---|
void |
RepositoryConnection.export(RDFHandler handler,
Resource... contexts)
Exports all explicit statements in the specified contexts to the supplied
RDFHandler.
|
void |
RepositoryConnection.exportStatements(Resource subj,
URI 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.
|
Modifier and Type | Method and Description |
---|---|
void |
RepositoryConnectionBase.export(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.
|
void |
RepositoryConnectionWrapper.exportStatements(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
RDFHandler handler,
Resource... contexts) |
Modifier and Type | Method and Description |
---|---|
void |
ContextAwareConnection.export(RDFHandler handler,
Resource... contexts) |
void |
ContextAwareConnection.exportStatements(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
RDFHandler handler,
Resource... contexts) |
void |
ContextAwareConnection.exportStatements(Resource subj,
URI 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.
|
Modifier and Type | Method and Description |
---|---|
void |
HTTPGraphQuery.evaluate(RDFHandler handler) |
Modifier and Type | Method and Description |
---|---|
void |
SailGraphQuery.evaluate(RDFHandler handler) |
void |
SailRepositoryConnection.exportStatements(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
RDFHandler handler,
Resource... contexts) |
Modifier and Type | Class and Description |
---|---|
class |
RDFSailInserter
An RDFHandler that adds RDF data to a repository.
|
Modifier and Type | Method and Description |
---|---|
void |
SPARQLConnection.exportStatements(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
RDFHandler handler,
Resource... contexts) |
Modifier and Type | Method and Description |
---|---|
void |
SPARQLGraphQuery.evaluate(RDFHandler handler) |
Modifier and Type | Class and Description |
---|---|
class |
AbstractRDFInserter
An RDFHandler that adds RDF data to some RDF sink.
|
class |
RDFInserter
An RDFHandler that adds RDF data to a repository.
|
class |
RDFRemover
An RDFHandler that removes RDF data from a repository.
|
Modifier and Type | Method and Description |
---|---|
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.
|
Modifier and Type | Interface and Description |
---|---|
interface |
RDFWriter
An interface for RDF document writers.
|
Modifier and Type | Method and Description |
---|---|
void |
RDFParser.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 given
RDFHandler . |
static void |
Rio.write(Statement statement,
RDFHandler writer)
Writes the given single statement to the given
RDFHandler . |
Modifier and Type | Class and Description |
---|---|
class |
BinaryRDFWriter |
Modifier and Type | Class and Description |
---|---|
class |
BufferedGroupingRDFHandler
An
RDFHandlerWrapper that buffers statements internally and passes
them to underlying handlers grouped by context, then subject, then predicate. |
class |
ContextStatementCollector
A RDFHandler that can be used to collect reported statements in collections.
|
class |
RDFHandlerBase
Base class for
RDFHandler s with dummy implementations of all
methods. |
class |
RDFHandlerWrapper
Convenience base class for RDF handlers that wrap one or more other RDF
handler.
|
class |
RDFWriterBase
Base class for
RDFWriter s offering common functionality for RDF
writers. |
class |
StatementCollector
A RDFHandler that can be used to collect reported statements in collections.
|
Modifier and Type | Field and Description |
---|---|
protected RDFHandler |
RDFParserBase.rdfHandler
The RDFHandler that will handle the parsed RDF.
|
Modifier and Type | Method and Description |
---|---|
RDFHandler |
RDFParserBase.getRDFHandler() |
Modifier and Type | Method and Description |
---|---|
void |
RDFParserBase.setRDFHandler(RDFHandler handler) |
Constructor and Description |
---|
BufferedGroupingRDFHandler(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(RDFHandler... rdfHandlers)
Creates a new RDFHandlerWrapper that wraps the supplied RDF handler(s).
|
Modifier and Type | Class and Description |
---|---|
class |
JSONLDWriter
An RDFWriter that links to
JSONLDInternalRDFParser . |
Modifier and Type | Class and Description |
---|---|
class |
N3Writer
An implementation of the RDFWriter interface that writes RDF documents in N3
format.
|
Modifier and Type | Class and Description |
---|---|
class |
NQuadsWriter
RDFWriter implementation for the
N-Quads RDF format. |
Modifier and Type | Class and Description |
---|---|
class |
NTriplesWriter
An implementation of the RDFWriter interface that writes RDF documents in
N-Triples format.
|
Modifier and Type | Class and Description |
---|---|
class |
RDFJSONWriter
RDFWriter implementation for the RDF/JSON format |
Modifier and Type | Class and Description |
---|---|
class |
RDFXMLWriter
An implementation of the RDFWriter interface that writes RDF documents in
XML-serialized RDF format.
|
Modifier and Type | Class and Description |
---|---|
class |
RDFXMLPrettyWriter
An extension of RDFXMLWriter that outputs a more concise form of RDF/XML.
|
Modifier and Type | Class and Description |
---|---|
class |
TriGWriter
An extension of
TurtleWriter that writes RDF documents in TriG format
by adding graph scopes to the Turtle document. |
Modifier and Type | Class and Description |
---|---|
class |
TriXWriter
An implementation of the RDFWriter interface that writes RDF documents in TriX format.
|
Modifier and Type | Class and Description |
---|---|
class |
TurtleWriter
An implementation of the RDFWriter interface that writes RDF documents in
Turtle format.
|
Copyright © 2001–2015 Aduna. All rights reserved.