Package | Description |
---|---|
org.eclipse.rdf4j.http.client | |
org.eclipse.rdf4j.query.resultio | |
org.eclipse.rdf4j.repository |
The Repository API: the main API for accessing rdf databases and SPARQL endpoints.
|
org.eclipse.rdf4j.repository.base |
Abstract base classes and wrappers for the main Repository API interfaces.
|
org.eclipse.rdf4j.repository.dataset |
A repository wrapper which supports auto-loading of datasets specified in a query.
|
org.eclipse.rdf4j.repository.sail.helpers |
Helper and utility classes for the
SailRepository |
org.eclipse.rdf4j.repository.sparql |
A
Repository that serves as a SPARQL endpoint client. |
org.eclipse.rdf4j.repository.util |
Helper classes for working with Repositories.
|
org.eclipse.rdf4j.rio |
Rio: The RDF4J parser/writer API.
|
org.eclipse.rdf4j.rio.helpers |
Provides helpers classes for Rio.
|
org.eclipse.rdf4j.sail |
RDF Storage And Inference Layer (RDF Sail): a set of interfaces defining an SPI for RDF databases.
|
org.eclipse.rdf4j.workbench.base |
Modifier and Type | Method and Description |
---|---|
ParserConfig |
SPARQLProtocolSession.getParserConfig() |
Modifier and Type | Method and Description |
---|---|
void |
SPARQLProtocolSession.setParserConfig(ParserConfig parserConfig)
Sets the parser configuration used to process HTTP response data.
|
Modifier and Type | Method and Description |
---|---|
ParserConfig |
AbstractQueryResultParser.getParserConfig() |
ParserConfig |
QueryResultParser.getParserConfig()
Retrieves the current parser configuration as a single object.
|
Modifier and Type | Method and Description |
---|---|
QueryResultParser |
AbstractQueryResultParser.setParserConfig(ParserConfig config) |
QueryResultParser |
QueryResultParser.setParserConfig(ParserConfig config)
Sets all supplied parser configuration options.
|
Modifier and Type | Method and Description |
---|---|
ParserConfig |
RepositoryConnection.getParserConfig()
Returns the parser configuration this connection uses for Rio-based operations.
|
Modifier and Type | Method and Description |
---|---|
void |
RepositoryConnection.setParserConfig(ParserConfig config)
Set the parser configuration this connection should use for RDFParser-based operations.
|
Modifier and Type | Method and Description |
---|---|
ParserConfig |
AbstractRepositoryConnection.getParserConfig() |
Modifier and Type | Method and Description |
---|---|
void |
RepositoryConnectionWrapper.setParserConfig(ParserConfig parserConfig) |
void |
AbstractRepositoryConnection.setParserConfig(ParserConfig parserConfig) |
Modifier and Type | Method and Description |
---|---|
void |
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.
|
Constructor and Description |
---|
SailUpdateExecutor(SailConnection con,
ValueFactory vf,
ParserConfig loadConfig)
Implementation of
SailUpdate.execute() using
SailConnection.evaluate(TupleExpr, Dataset, BindingSet, boolean) and other SailConnection
methods. |
Modifier and Type | Method and Description |
---|---|
void |
SPARQLConnection.setParserConfig(ParserConfig parserConfig) |
Constructor and Description |
---|
RDFLoader(ParserConfig config,
ValueFactory vf) |
Modifier and Type | Method and Description |
---|---|
ParserConfig |
ParserConfig.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.
|
ParserConfig |
RDFParser.getParserConfig()
Retrieves the current parser configuration as a single object.
|
<T> ParserConfig |
ParserConfig.set(RioSetting<T> setting,
T value) |
ParserConfig |
ParserConfig.setNonFatalErrors(Set<RioSetting<?>> nonFatalErrors)
This method indicates a list of optional errors that the parser should attempt to recover from.
|
ParserConfig |
ParserConfig.useDefaults() |
Modifier and Type | Method and Description |
---|---|
static Model |
Rio.parse(InputStream in,
String baseURI,
RDFFormat dataFormat,
ParserConfig settings,
ValueFactory valueFactory,
ParseErrorListener errors,
ModelFactory modelFactory,
Resource... contexts)
Adds RDF data from an
InputStream to a Model , 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 an
InputStream to a Model , 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)
|
RDFParser |
RDFParser.setParserConfig(ParserConfig config)
Sets all supplied parser configuration options.
|
Modifier and Type | Method and Description |
---|---|
ParserConfig |
AbstractRDFParser.getParserConfig() |
Modifier and Type | Method and Description |
---|---|
static 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 any
DatatypeHandler or LanguageHandler implementations that are found in the ParserConfig . |
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 any
DatatypeHandler or LanguageHandler implementations that are found in the ParserConfig . |
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.
|
RDFParser |
AbstractRDFParser.setParserConfig(ParserConfig config) |
Modifier and Type | Method and Description |
---|---|
ParserConfig |
SailConnectionQueryPreparer.getParserConfig() |
Modifier and Type | Method and Description |
---|---|
void |
SailConnectionQueryPreparer.setParserConfig(ParserConfig parserConfig) |
Constructor and Description |
---|
SailConnectionUpdate(ParsedUpdate parsedUpdate,
SailConnection con,
ValueFactory vf,
ParserConfig parserConfig) |
Modifier and Type | Field and Description |
---|---|
protected static ParserConfig |
TransformationServlet.NON_VERIFYING_PARSER_CONFIG |
Copyright © 2015-2020 Eclipse Foundation. All Rights Reserved.