Uses of Class
org.eclipse.rdf4j.rio.ParserConfig
Packages that use ParserConfig
Package
Description
The Repository API: the main API for accessing rdf databases and SPARQL endpoints.
Abstract base classes and wrappers for the main Repository API interfaces.
A repository wrapper which supports auto-loading of datasets specified in a query.
Helper and utility classes for the
SailRepository
A
Repository
that serves as a SPARQL endpoint client.Helper classes for working with Repositories.
Rio: The RDF4J parser/writer API.
Provides helpers classes for Rio.
-
Uses of ParserConfig in org.eclipse.rdf4j.http.client
Methods in org.eclipse.rdf4j.http.client that return ParserConfigMethods in org.eclipse.rdf4j.http.client with parameters of type ParserConfigModifier and TypeMethodDescriptionvoid
SPARQLProtocolSession.setParserConfig
(ParserConfig parserConfig) Sets the parser configuration used to process HTTP response data. -
Uses of ParserConfig in org.eclipse.rdf4j.query.resultio
Methods in org.eclipse.rdf4j.query.resultio that return ParserConfigModifier and TypeMethodDescriptionAbstractQueryResultParser.getParserConfig()
QueryResultParser.getParserConfig()
Retrieves the current parser configuration as a single object.Methods in org.eclipse.rdf4j.query.resultio with parameters of type ParserConfigModifier and TypeMethodDescriptionAbstractQueryResultParser.setParserConfig
(ParserConfig config) QueryResultParser.setParserConfig
(ParserConfig config) Sets all supplied parser configuration options. -
Uses of ParserConfig in org.eclipse.rdf4j.repository
Methods in org.eclipse.rdf4j.repository that return ParserConfigModifier and TypeMethodDescriptionRepositoryConnection.getParserConfig()
Returns the parser configuration this connection uses for Rio-based operations.Methods in org.eclipse.rdf4j.repository with parameters of type ParserConfigModifier and TypeMethodDescriptionvoid
RepositoryConnection.setParserConfig
(ParserConfig config) Set the parser configuration this connection should use for RDFParser-based operations. -
Uses of ParserConfig in org.eclipse.rdf4j.repository.base
Methods in org.eclipse.rdf4j.repository.base that return ParserConfigMethods in org.eclipse.rdf4j.repository.base with parameters of type ParserConfigModifier and TypeMethodDescriptionvoid
AbstractRepositoryConnection.setParserConfig
(ParserConfig parserConfig) void
RepositoryConnectionWrapper.setParserConfig
(ParserConfig parserConfig) -
Uses of ParserConfig in org.eclipse.rdf4j.repository.dataset
Methods in org.eclipse.rdf4j.repository.dataset with parameters of type ParserConfigModifier and TypeMethodDescriptionvoid
DatasetRepository.loadDataset
(URL url, IRI context, ParserConfig config) Inspects if the dataset at the supplied URL location has been modified since the last load into this repository and if so loads it into the supplied context. -
Uses of ParserConfig in org.eclipse.rdf4j.repository.sail.helpers
Constructors in org.eclipse.rdf4j.repository.sail.helpers with parameters of type ParserConfigModifierConstructorDescriptionSailUpdateExecutor
(SailConnection con, ValueFactory vf, ParserConfig loadConfig) Implementation ofSailUpdate.execute()
usingSailConnection.evaluate(TupleExpr, Dataset, BindingSet, boolean)
and otherSailConnection
methods. -
Uses of ParserConfig in org.eclipse.rdf4j.repository.sparql
Methods in org.eclipse.rdf4j.repository.sparql with parameters of type ParserConfigModifier and TypeMethodDescriptionvoid
SPARQLConnection.setParserConfig
(ParserConfig parserConfig) -
Uses of ParserConfig in org.eclipse.rdf4j.repository.util
Constructors in org.eclipse.rdf4j.repository.util with parameters of type ParserConfig -
Uses of ParserConfig in org.eclipse.rdf4j.rio
Methods in org.eclipse.rdf4j.rio that return ParserConfigModifier and TypeMethodDescriptionParserConfig.addNonFatalError
(RioSetting<?> nextNonFatalError) Add a non-fatal error to the set used by parsers to determine whether they should attempt to recover from a particular parsing error.RDFParser.getParserConfig()
Retrieves the current parser configuration as a single object.<T> ParserConfig
ParserConfig.set
(RioSetting<T> setting, T value) ParserConfig.setNonFatalErrors
(Set<RioSetting<?>> nonFatalErrors) This method indicates a list of optional errors that the parser should attempt to recover from.ParserConfig.useDefaults()
Methods in org.eclipse.rdf4j.rio with parameters of type ParserConfigModifier and TypeMethodDescriptionstatic Model
Rio.parse
(InputStream in, String baseURI, RDFFormat dataFormat, ParserConfig settings, Resource... contexts) Adds RDF data from anInputStream
to aModel
, optionally to one or more named contexts.static Model
Rio.parse
(InputStream in, String baseURI, RDFFormat dataFormat, ParserConfig settings, ValueFactory valueFactory, ParseErrorListener errors, ModelFactory modelFactory, Resource... contexts) Adds RDF data from anInputStream
to aModel
, optionally to one or more named contexts.static Model
Rio.parse
(InputStream in, String baseURI, RDFFormat dataFormat, ParserConfig settings, ValueFactory valueFactory, ParseErrorListener errors, Resource... contexts) Adds RDF data from anInputStream
to aModel
, optionally to one or more named contexts.static Model
Rio.parse
(InputStream in, RDFFormat dataFormat, ParserConfig settings, Resource... contexts) Adds RDF data from anInputStream
to aModel
, optionally to one or more named contexts.static Model
Rio.parse
(Reader reader, String baseURI, RDFFormat dataFormat, ParserConfig settings, ValueFactory valueFactory, ParseErrorListener errors, ModelFactory modelFactory, Resource... contexts) static Model
Rio.parse
(Reader reader, String baseURI, RDFFormat dataFormat, ParserConfig settings, ValueFactory valueFactory, ParseErrorListener errors, Resource... contexts) static Model
Rio.parse
(Reader reader, RDFFormat dataFormat, ParserConfig settings, Resource... contexts) RDFParser.setParserConfig
(ParserConfig config) Sets all supplied parser configuration options. -
Uses of ParserConfig in org.eclipse.rdf4j.rio.helpers
Methods in org.eclipse.rdf4j.rio.helpers that return ParserConfigMethods in org.eclipse.rdf4j.rio.helpers with parameters of type ParserConfigModifier and TypeMethodDescriptionstatic final Literal
RDFParserHelper.createLiteral
(String label, String lang, IRI datatype, ParserConfig parserConfig, ParseErrorListener errListener, ValueFactory valueFactory) Create a literal using the given parameters, including iterative verification and normalization by anyDatatypeHandler
orLanguageHandler
implementations that are found in theParserConfig
.static Literal
RDFParserHelper.createLiteral
(String label, String lang, IRI datatype, ParserConfig parserConfig, ParseErrorListener errListener, ValueFactory valueFactory, long lineNo, long columnNo) Create a literal using the given parameters, including iterative verification and normalization by anyDatatypeHandler
orLanguageHandler
implementations that are found in theParserConfig
.static void
RDFParserHelper.reportError
(Exception e, long lineNo, long columnNo, RioSetting<Boolean> relevantSetting, ParserConfig parserConfig, ParseErrorListener errListener) Reports an error with associated line- and column number to the registered ParseErrorListener, if the given setting has been set to true.static void
RDFParserHelper.reportError
(String msg, long lineNo, long columnNo, RioSetting<Boolean> relevantSetting, ParserConfig parserConfig, ParseErrorListener errListener) Reports an error with associated line- and column number to the registered ParseErrorListener, if the given setting has been set to true.static void
RDFParserHelper.reportError
(String msg, RioSetting<Boolean> relevantSetting, ParserConfig parserConfig, ParseErrorListener errListener) Reports an error with associated line- and column number to the registered ParseErrorListener, if the given setting has been set to true.AbstractRDFParser.setParserConfig
(ParserConfig config) -
Uses of ParserConfig in org.eclipse.rdf4j.workbench.base
Fields in org.eclipse.rdf4j.workbench.base declared as ParserConfigModifier and TypeFieldDescriptionprotected static final ParserConfig
TransformationServlet.NON_VERIFYING_PARSER_CONFIG