Interface Extractor<Output>
-
- All Known Subinterfaces:
RDFExtractor
,TextExtractor
- All Known Implementing Classes:
AbstractEntityRDFExtractor
,DictionaryLinkerRDFExtractor
,EntityLinkerRDFExtractor
,MentionRDFExtractor
,TextProvidingRDFExtractor
public interface Extractor<Output>
Interface for objects that extract data from text documents. Since Stardog 5.3, new implementations should only implementextract(Connection, IRI, Path)
.- Since:
- 4.0
- Version:
- 5.3
- Author:
- Michael Grove
-
-
Method Summary
All Methods Instance Methods Default Methods Deprecated Methods Modifier and Type Method Description default Output
extract(Connection theConnection, IRI theDocIri, java.nio.file.Path theDocContents)
default Output
extract(com.complexible.stardog.db.DatabaseConnection theConnection, IRI theDocIri, java.nio.file.Path theDocContents)
Deprecated.since version 5.3, will be removed in a future release.
-
-
-
Method Detail
-
extract
default Output extract(com.complexible.stardog.db.DatabaseConnection theConnection, IRI theDocIri, java.nio.file.Path theDocContents) throws com.complexible.stardog.docs.BitesException
Deprecated.since version 5.3, will be removed in a future release. New implementations should useextract(Connection, IRI, Path)
- Throws:
com.complexible.stardog.docs.BitesException
-
extract
default Output extract(Connection theConnection, IRI theDocIri, java.nio.file.Path theDocContents) throws com.complexible.stardog.docs.BitesException
- Throws:
com.complexible.stardog.docs.BitesException
-
-