Uses of Class
tech.oxfordsemantic.jrdfox.client.InputSourceFactory
Package | Description |
---|---|
tech.oxfordsemantic.jrdfox.client |
-
Uses of InputSourceFactory in tech.oxfordsemantic.jrdfox.client
Methods in tech.oxfordsemantic.jrdfox.client that return InputSourceFactory Modifier and Type Method Description static InputSourceFactory
InputSourceFactory. newInputSourceFactory(java.io.File file)
Creates an input source that provides data to RDFox by reading the specified file.static InputSourceFactory
InputSourceFactory. newInputSourceFactory(java.io.File file, java.lang.String encryptionAlgorithm, java.lang.String encryptionKey)
Creates an input source that provides data to RDFox by reading the specified encrypted file.static InputSourceFactory
InputSourceFactory. newInputSourceFactory(java.lang.String name, java.lang.String baseIRI, java.io.InputStream content)
Creates an input source that provides data to RDFox by reading the specified input stream.static InputSourceFactory
InputSourceFactory. newInputSourceFactory(java.lang.String name, java.lang.String baseIRI, java.lang.String content)
Creates an input source that provides data to RDFox by reading the specified string.static InputSourceFactory
InputSourceFactory. newInputSourceFactory(java.net.URI uri)
Creates an input source that provides data to RDFox by reading the specified URI.static InputSourceFactory
InputSourceFactory. newInputSourceFactory(java.net.URL url)
Creates an input source that provides data to RDFox by reading the specified URL.Methods in tech.oxfordsemantic.jrdfox.client with parameters of type InputSourceFactory Modifier and Type Method Description ImportResult
DataStoreConnection. importData(ResourceValue defaultGraph, UpdateType updateType, InputSourceFactory inputSourceFactory, java.lang.String formatName, ImportNotificationMonitor importNotificationMonitor)
Imports the data described by the given input source factory into the current data store Triples in the default graph will be put into the named graph specified using thedefaultGraph
parameter.ImportResult
DataStoreConnection. importData(UpdateType updateType, InputSourceFactory inputSourceFactory, java.lang.String formatName, ImportNotificationMonitor importNotificationMonitor)
Imports the data described by the given input source factory into the current data store.Method parameters in tech.oxfordsemantic.jrdfox.client with type arguments of type InputSourceFactory Modifier and Type Method Description ImportResult
DataStoreConnection. importData(ResourceValue defaultGraph, UpdateType updateType, java.util.Collection<InputSourceFactory> inputSourceFactories, java.lang.String formatName, ImportNotificationMonitor importNotificationMonitor)
Imports the data described by the given input source factories into the current data store.ImportResult
DataStoreConnection. importData(UpdateType updateType, java.util.Collection<InputSourceFactory> inputSourceFactories, java.lang.String formatName, ImportNotificationMonitor importNotificationMonitor)
Imports the data described by the given input source factories into the current data store.