Uses of Interface
org.openrdf.rio.RDFHandler

Packages that use RDFHandler
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   
org.openrdf.repository.http A repository that serves as a proxy for a remote repository on a Sesame server. 
org.openrdf.repository.sail Repository implementation for local storage backends. 
org.openrdf.repository.sparql   
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.n3 Writer for RDF in Notation 3/N3 format. 
org.openrdf.rio.ntriples Parser and writer for RDF in N-Triples format. 
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. 
 

Uses of RDFHandler in org.openrdf.http.client
 

Methods in org.openrdf.http.client with parameters of type RDFHandler
protected  void HTTPClient.getRDF(org.apache.commons.httpclient.HttpMethod method, RDFHandler handler, boolean requireContext)
           
 void HTTPClient.getStatements(Resource subj, URI pred, Value obj, boolean includeInferred, RDFHandler handler, Resource... contexts)
           
 void HTTPClient.sendGraphQuery(QueryLanguage ql, String query, Dataset dataset, boolean includeInferred, RDFHandler handler, Binding... bindings)
           
 void HTTPClient.sendGraphQuery(QueryLanguage ql, String query, String baseURI, Dataset dataset, boolean includeInferred, int maxQueryTime, RDFHandler handler, Binding... bindings)
           
 

Uses of RDFHandler in org.openrdf.query
 

Methods in org.openrdf.query with parameters of type RDFHandler
 void GraphQuery.evaluate(RDFHandler handler)
           
static void QueryResultUtil.report(GraphQueryResult gqr, RDFHandler rdfHandler)
          Reports a graph query result to an RDFHandler.
 

Uses of RDFHandler in org.openrdf.query.dawg
 

Classes in org.openrdf.query.dawg that implement RDFHandler
 class DAWGTestBooleanParser
           
 class DAWGTestResultSetParser
           
 

Constructors in org.openrdf.query.dawg with parameters of type RDFHandler
DAWGTestResultSetWriter(RDFHandler rdfHandler)
           
DAWGTestResultSetWriter(RDFHandler rdfHandler, ValueFactory vf)
           
 

Uses of RDFHandler in org.openrdf.repository
 

Methods in org.openrdf.repository with parameters of type RDFHandler
 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.
 

Uses of RDFHandler in org.openrdf.repository.base
 

Methods in org.openrdf.repository.base with parameters of type RDFHandler
 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)
           
 

Uses of RDFHandler in org.openrdf.repository.contextaware
 

Methods in org.openrdf.repository.contextaware with parameters of type RDFHandler
 void ContextAwareConnection.export(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.
 

Uses of RDFHandler in org.openrdf.repository.http
 

Methods in org.openrdf.repository.http with parameters of type RDFHandler
 void HTTPGraphQuery.evaluate(RDFHandler handler)
           
 

Uses of RDFHandler in org.openrdf.repository.sail
 

Methods in org.openrdf.repository.sail with parameters of type RDFHandler
 void SailGraphQuery.evaluate(RDFHandler handler)
           
 void SailRepositoryConnection.exportStatements(Resource subj, URI pred, Value obj, boolean includeInferred, RDFHandler handler, Resource... contexts)
           
 

Uses of RDFHandler in org.openrdf.repository.sparql
 

Methods in org.openrdf.repository.sparql with parameters of type RDFHandler
 void SPARQLConnection.exportStatements(Resource subj, URI pred, Value obj, boolean includeInferred, RDFHandler handler, Resource... contexts)
           
 

Uses of RDFHandler in org.openrdf.repository.sparql.query
 

Classes in org.openrdf.repository.sparql.query that implement RDFHandler
 class BackgroundGraphResult
          Provides concurrent access to statements as they are being parsed.
 

Methods in org.openrdf.repository.sparql.query with parameters of type RDFHandler
 void SPARQLGraphQuery.evaluate(RDFHandler handler)
           
 

Uses of RDFHandler in org.openrdf.repository.util
 

Classes in org.openrdf.repository.util that implement RDFHandler
 class RDFInserter
          An RDFHandler that adds RDF data to a repository.
 class RDFRemover
          An RDFHandler that removes RDF data from a repository.
 

Uses of RDFHandler in org.openrdf.rio
 

Subinterfaces of RDFHandler in org.openrdf.rio
 interface RDFWriter
          An interface for RDF document writers.
 

Methods in org.openrdf.rio with parameters of type RDFHandler
 void RDFParser.setRDFHandler(RDFHandler handler)
          Sets the RDFHandler that will handle the parsed RDF data.
 

Uses of RDFHandler in org.openrdf.rio.binary
 

Classes in org.openrdf.rio.binary that implement RDFHandler
 class BinaryRDFWriter
           
 

Uses of RDFHandler in org.openrdf.rio.helpers
 

Classes in org.openrdf.rio.helpers that implement RDFHandler
 class RDFHandlerBase
          Base class for RDFHandlers with dummy implementations of all methods.
 class RDFHandlerWrapper
          Convenience base class for RDF handlers that wrap another RDF handler.
 class StatementCollector
          A RDFHandler that can be used to collect reported statements in collections.
 

Fields in org.openrdf.rio.helpers declared as RDFHandler
protected  RDFHandler RDFParserBase.rdfHandler
          The RDFHandler that will handle the parsed RDF.
 

Methods in org.openrdf.rio.helpers that return RDFHandler
 RDFHandler RDFParserBase.getRDFHandler()
           
 

Methods in org.openrdf.rio.helpers with parameters of type RDFHandler
 void RDFParserBase.setRDFHandler(RDFHandler handler)
           
 

Constructors in org.openrdf.rio.helpers with parameters of type RDFHandler
RDFHandlerWrapper(RDFHandler rdfHandler)
          Creates a new RDFHandlerWrapper that wraps the supplied RDF handler.
 

Uses of RDFHandler in org.openrdf.rio.n3
 

Classes in org.openrdf.rio.n3 that implement RDFHandler
 class N3Writer
          An implementation of the RDFWriter interface that writes RDF documents in N3 format.
 

Uses of RDFHandler in org.openrdf.rio.ntriples
 

Classes in org.openrdf.rio.ntriples that implement RDFHandler
 class NTriplesWriter
          An implementation of the RDFWriter interface that writes RDF documents in N-Triples format.
 

Uses of RDFHandler in org.openrdf.rio.rdfxml
 

Classes in org.openrdf.rio.rdfxml that implement RDFHandler
 class RDFXMLWriter
          An implementation of the RDFWriter interface that writes RDF documents in XML-serialized RDF format.
 

Uses of RDFHandler in org.openrdf.rio.rdfxml.util
 

Classes in org.openrdf.rio.rdfxml.util that implement RDFHandler
 class RDFXMLPrettyWriter
          An extension of RDFXMLWriter that outputs a more concise form of RDF/XML.
 

Uses of RDFHandler in org.openrdf.rio.trig
 

Classes in org.openrdf.rio.trig that implement RDFHandler
 class TriGWriter
          An extension of TurtleWriter that writes RDF documents in TriG format by adding graph scopes to the Turtle document.
 

Uses of RDFHandler in org.openrdf.rio.trix
 

Classes in org.openrdf.rio.trix that implement RDFHandler
 class TriXWriter
          An implementation of the RDFWriter interface that writes RDF documents in TriX format.
 

Uses of RDFHandler in org.openrdf.rio.turtle
 

Classes in org.openrdf.rio.turtle that implement RDFHandler
 class TurtleWriter
          An implementation of the RDFWriter interface that writes RDF documents in Turtle format.
 



Copyright © 2001-2012 Aduna. All Rights Reserved.