| 
 | ||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use TripleHandler | |
|---|---|
| org.apache.any23 | TODO fillme | 
| org.apache.any23.extractor | TODO fillme | 
| org.apache.any23.filter | TODO fillme | 
| org.apache.any23.writer | TODO fillme | 
| Uses of TripleHandler in org.apache.any23 | 
|---|
| Methods in org.apache.any23 with parameters of type TripleHandler | |
|---|---|
|  ExtractionReport | Any23.extract(DocumentSource in,
        TripleHandler outputHandler)Performs metadata extraction from the content of the given indocument source, sending the generated events
 to the specifiedoutputHandler. | 
|  ExtractionReport | Any23.extract(DocumentSource in,
        TripleHandler outputHandler,
        String encoding)Performs metadata extraction from the content of the given indocument source, sending the generated events
 to the specifiedoutputHandler. | 
|  ExtractionReport | Any23.extract(ExtractionParameters eps,
        DocumentSource in,
        TripleHandler outputHandler)Performs metadata extraction from the content of the given indocument source, sending the generated events
 to the specifiedoutputHandler. | 
|  ExtractionReport | Any23.extract(ExtractionParameters eps,
        DocumentSource in,
        TripleHandler outputHandler,
        String encoding)Performs metadata extraction from the content of the given indocument source, sending the generated events
 to the specifiedoutputHandler. | 
|  ExtractionReport | Any23.extract(ExtractionParameters eps,
        String documentURI,
        TripleHandler outputHandler)Performs metadata extraction from the content of the given documentURIsending the generated events to the specifiedoutputHandler. | 
|  ExtractionReport | Any23.extract(File file,
        TripleHandler outputHandler)Performs metadata extraction from the content of the given filesending the generated events to the specifiedoutputHandler. | 
|  ExtractionReport | Any23.extract(String in,
        String documentURI,
        String contentType,
        String encoding,
        TripleHandler outputHandler)Performs metadata extraction on the instring
 associated to thedocumentURIURI, declaringcontentTypeandencoding. | 
|  ExtractionReport | Any23.extract(String in,
        String documentURI,
        TripleHandler outputHandler)Performs metadata extraction on the instring
 associated to thedocumentURIURI, sending the generated
 events to the specifiedoutputHandler. | 
|  ExtractionReport | Any23.extract(String documentURI,
        TripleHandler outputHandler)Performs metadata extraction from the content of the given documentURIsending the generated events to the specifiedoutputHandler. | 
| Uses of TripleHandler in org.apache.any23.extractor | 
|---|
| Constructors in org.apache.any23.extractor with parameters of type TripleHandler | |
|---|---|
| ExtractionResultImpl(ExtractionContext context,
                     Extractor<?> extractor,
                     TripleHandler tripleHandler) | |
| SingleDocumentExtraction(Configuration configuration,
                         DocumentSource in,
                         ExtractorFactory<?> factory,
                         TripleHandler output)Builds an extractor by the specification of document source, extractors factory and output triple handler. | |
| SingleDocumentExtraction(Configuration configuration,
                         DocumentSource in,
                         ExtractorGroup extractors,
                         TripleHandler output)Builds an extractor by the specification of document source, list of extractors and output triple handler. | |
| SingleDocumentExtraction(DocumentSource in,
                         ExtractorFactory<?> factory,
                         TripleHandler output)Builds an extractor by the specification of document source, extractors factory and output triple handler, using the DefaultConfiguration. | |
| Uses of TripleHandler in org.apache.any23.filter | 
|---|
| Classes in org.apache.any23.filter that implement TripleHandler | |
|---|---|
|  class | ExtractionContextBlockerA wrapper around a TripleHandlerthat can block and unblock
 calls to the handler, either for the entire document, or for
 individualExtractionContexts. | 
|  class | IgnoreAccidentalRDFaA TripleHandlerthat suppresses output of the RDFa
 parser if the document only contains "accidental" RDFa,
 like stylesheet links and other non-RDFa uses of HTML's | 
|  class | IgnoreTitlesOfEmptyDocumentsA TripleHandlerthat suppresses output of theTitleExtractorunless some other triples could
 be parsed from the document. | 
| Constructors in org.apache.any23.filter with parameters of type TripleHandler | |
|---|---|
| ExtractionContextBlocker(TripleHandler wrapped) | |
| IgnoreAccidentalRDFa(TripleHandler wrapped) | |
| IgnoreAccidentalRDFa(TripleHandler wrapped,
                     boolean alwaysSuppressCSSTriples)Constructor. | |
| IgnoreTitlesOfEmptyDocuments(TripleHandler wrapped) | |
| Uses of TripleHandler in org.apache.any23.writer | 
|---|
| Subinterfaces of TripleHandler in org.apache.any23.writer | |
|---|---|
|  interface | FormatWriterBase interface used for the definition of RDF format writers. | 
| Classes in org.apache.any23.writer that implement TripleHandler | |
|---|---|
|  class | BenchmarkTripleHandlerTripleHandlerdecorator useful to
 perform benchmarking. | 
|  class | CompositeTripleHandlerA TripleHandlermulti decorator, that wraps zero or more
 other triple handlers and dispatches all events to each of them. | 
|  class | CountingTripleHandlerA simple TripleHandlerthat merely counts the number
 of triples it has received. | 
|  class | JSONWriterImplementation of JSON format writer. | 
|  class | LoggingTripleHandlerTriple handler decorator useful for logging purposes. | 
|  class | NQuadsWriterImplementation of an NQuads writer. | 
|  class | NTriplesWriterN3 triples writer. | 
|  class | RDFWriterTripleHandlerA TripleHandlerthat writes
 triples to a SesameRDFWriter,
 eg for serialization using one of Sesame's writers. | 
|  class | RDFXMLWriterRDF/XML writer implementation. | 
|  class | ReportingTripleHandlerA TripleHandlerthat collects
 various information about the extraction process, such as
 the extractors used and the total number of triples. | 
|  class | RepositoryWriterA Sesame repository triple writer. | 
|  class | TriXWriterTriX format writer implementation. | 
|  class | TurtleWriterN3 notation writer. | 
|  class | URIListWriterThis writer simply produces a list of unique URI present in the subject or in the object of every single extracted RDF Statement. | 
| Methods in org.apache.any23.writer that return types with arguments of type TripleHandler | |
|---|---|
|  Collection<TripleHandler> | CompositeTripleHandler.getChilds() | 
| Methods in org.apache.any23.writer with parameters of type TripleHandler | |
|---|---|
|  void | CompositeTripleHandler.addChild(TripleHandler child)Adds a decorated handler. | 
| Constructors in org.apache.any23.writer with parameters of type TripleHandler | |
|---|---|
| BenchmarkTripleHandler(TripleHandler tripleHandler)Constructor. | |
| LoggingTripleHandler(TripleHandler tripleHandler,
                     PrintWriter destination) | |
| ReportingTripleHandler(TripleHandler wrapped) | |
| Constructor parameters in org.apache.any23.writer with type arguments of type TripleHandler | |
|---|---|
| CompositeTripleHandler(Collection<TripleHandler> children)Constructor with initial list of decorated handlers. | |
| 
 | ||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||