Uses of Interface
org.eclipse.rdf4j.rio.RDFHandler
-
Packages that use RDFHandler Package Description org.eclipse.rdf4j.rio Rio: The RDF4J parser/writer API.org.eclipse.rdf4j.rio.helpers Provides helpers classes for Rio. -
-
Uses of RDFHandler in org.eclipse.rdf4j.rio
Subinterfaces of RDFHandler in org.eclipse.rdf4j.rio Modifier and Type Interface Description interfaceRDFWriterAn interface for RDF document writers.Methods in org.eclipse.rdf4j.rio with parameters of type RDFHandler Modifier and Type Method Description RDFParserRDFParser. setRDFHandler(RDFHandler handler)Sets the RDFHandler that will handle the parsed RDF data.static voidRio. write(Iterable<org.eclipse.rdf4j.model.Statement> model, RDFHandler writer)Writes the given statements to the givenRDFHandler.static voidRio. write(org.eclipse.rdf4j.model.Statement statement, RDFHandler writer)Writes the given single statement to the givenRDFHandler. -
Uses of RDFHandler in org.eclipse.rdf4j.rio.helpers
Classes in org.eclipse.rdf4j.rio.helpers that implement RDFHandler Modifier and Type Class Description classAbstractRDFHandlerBase class forRDFHandlers with dummy implementations of all methods.classAbstractRDFWriterBase class forRDFWriters offering common functionality for RDF writers.classBufferedGroupingRDFHandlerAnRDFHandlerWrapperthat buffers statements internally and passes them to underlying handlers grouped by context, then subject, then predicate.classContextStatementCollectorA RDFHandler that can be used to collect reported statements in collections.classRDFHandlerWrapperConvenience base class for RDF handlers that wrap one or more other RDF handler.classStatementCollectorA RDFHandler that can be used to collect reported statements in collections.classTimeLimitRDFHandlerFields in org.eclipse.rdf4j.rio.helpers declared as RDFHandler Modifier and Type Field Description protected RDFHandlerAbstractRDFParser. rdfHandlerThe RDFHandler that will handle the parsed RDF.Methods in org.eclipse.rdf4j.rio.helpers that return RDFHandler Modifier and Type Method Description RDFHandlerAbstractRDFParser. getRDFHandler()Methods in org.eclipse.rdf4j.rio.helpers with parameters of type RDFHandler Modifier and Type Method Description RDFParserAbstractRDFParser. setRDFHandler(RDFHandler handler)Constructors in org.eclipse.rdf4j.rio.helpers with parameters of type RDFHandler Constructor 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(org.eclipse.rdf4j.model.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)
-