Uses of Interface
org.eclipse.rdf4j.rio.RioSetting
-
-
Uses of RioSetting in org.eclipse.rdf4j.query.resultio
Methods in org.eclipse.rdf4j.query.resultio that return types with arguments of type RioSetting Modifier and Type Method Description Collection<RioSetting<?>>
AbstractQueryResultParser. getSupportedSettings()
Collection<RioSetting<?>>
AbstractQueryResultWriter. getSupportedSettings()
Collection<RioSetting<?>>
QueryResultParser. getSupportedSettings()
Collection<RioSetting<?>>
QueryResultWriter. getSupportedSettings()
Methods in org.eclipse.rdf4j.query.resultio with parameters of type RioSetting Modifier and Type Method Description <T> QueryResultParser
AbstractQueryResultParser. set(RioSetting<T> setting, T value)
<T> QueryResultParser
QueryResultParser. set(RioSetting<T> setting, T value)
Set a setting on the parser, and return this parser object to allow chaining. -
Uses of RioSetting in org.eclipse.rdf4j.query.resultio.binary
Methods in org.eclipse.rdf4j.query.resultio.binary that return types with arguments of type RioSetting Modifier and Type Method Description Collection<RioSetting<?>>
BinaryQueryResultWriter. getSupportedSettings()
-
Uses of RioSetting in org.eclipse.rdf4j.query.resultio.sparqljson
Methods in org.eclipse.rdf4j.query.resultio.sparqljson that return types with arguments of type RioSetting Modifier and Type Method Description Collection<RioSetting<?>>
AbstractSPARQLJSONParser. getSupportedSettings()
-
Uses of RioSetting in org.eclipse.rdf4j.query.resultio.sparqlxml
Methods in org.eclipse.rdf4j.query.resultio.sparqlxml that return types with arguments of type RioSetting Modifier and Type Method Description Collection<RioSetting<Boolean>>
AbstractSPARQLXMLParser. getCompulsoryXmlFeatureSettings()
Returns a collection of settings that will always be set as XML parser features usingXMLReader.setFeature(String, boolean)
.Collection<RioSetting<?>>
AbstractSPARQLXMLParser. getCompulsoryXmlPropertySettings()
Returns a collection of settings that will always be set as XML parser properties usingXMLReader.setProperty(String, Object)
Collection<RioSetting<Boolean>>
AbstractSPARQLXMLParser. getOptionalXmlFeatureSettings()
Returns a collection of settings that will be used, if set inAbstractQueryResultParser.getParserConfig()
, as XML parser features usingXMLReader.setFeature(String, boolean)
.Collection<RioSetting<?>>
AbstractSPARQLXMLParser. getOptionalXmlPropertySettings()
Returns a collection of settings that will be used, if set inAbstractQueryResultParser.getParserConfig()
, as XML parser properties usingXMLReader.setProperty(String, Object)
Collection<RioSetting<?>>
AbstractSPARQLXMLParser. getSupportedSettings()
-
Uses of RioSetting in org.eclipse.rdf4j.rio
Fields in org.eclipse.rdf4j.rio with type parameters of type RioSetting Modifier and Type Field Description protected ConcurrentMap<RioSetting<Object>,Object>
RioConfig. settings
A map containing mappings from settings to their values.protected ConcurrentMap<RioSetting<Object>,Object>
RioConfig. systemPropertyCache
A map containing mappings from settings to system properties that have been discovered since the last call toRioConfig.useDefaults()
.Methods in org.eclipse.rdf4j.rio that return types with arguments of type RioSetting Modifier and Type Method Description Set<RioSetting<?>>
ParserConfig. getNonFatalErrors()
Get the current set of non-fatal errors.Collection<RioSetting<?>>
RDFParser. getSupportedSettings()
Collection<RioSetting<?>>
RDFWriter. getSupportedSettings()
Methods in org.eclipse.rdf4j.rio with parameters of type RioSetting Modifier and Type Method 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.<T> T
RioConfig. get(RioSetting<T> setting)
Return the value for a givenRioSetting
or the default value if it has not been set.boolean
ParserConfig. isNonFatalError(RioSetting<?> errorToCheck)
This method is used by the parser to check whether they should throw an exception or attempt to recover from a non-fatal error.<T> boolean
RioConfig. isSet(RioSetting<T> setting)
Checks for whether aRioSetting
has been explicitly set by a user.<T> ParserConfig
ParserConfig. set(RioSetting<T> setting, T value)
<T> RDFParser
RDFParser. set(RioSetting<T> setting, T value)
Set a setting on the parser, and return this parser object to allow chaining.<T> RDFWriter
RDFWriter. set(RioSetting<T> setting, T value)
Set a setting on the writer, and return this writer object to allow chaining.<T> RioConfig
RioConfig. set(RioSetting<T> setting, T value)
Sets aRioSetting
to have a new value.<T> WriterConfig
WriterConfig. set(RioSetting<T> setting, T value)
Method parameters in org.eclipse.rdf4j.rio with type arguments of type RioSetting Modifier and Type Method Description ParserConfig
ParserConfig. setNonFatalErrors(Set<RioSetting<?>> nonFatalErrors)
This method indicates a list of optional errors that the parser should attempt to recover from. -
Uses of RioSetting in org.eclipse.rdf4j.rio.binary
Methods in org.eclipse.rdf4j.rio.binary that return types with arguments of type RioSetting Modifier and Type Method Description Collection<RioSetting<?>>
BinaryRDFWriter. getSupportedSettings()
-
Uses of RioSetting in org.eclipse.rdf4j.rio.hdt
Methods in org.eclipse.rdf4j.rio.hdt that return types with arguments of type RioSetting Modifier and Type Method Description Collection<RioSetting<?>>
HDTParser. getSupportedSettings()
-
Uses of RioSetting in org.eclipse.rdf4j.rio.helpers
Classes in org.eclipse.rdf4j.rio.helpers that implement RioSetting Modifier and Type Class Description class
AbstractRioSetting<T>
Base class forRioSetting
.class
BooleanRioSetting
ARioSetting
with aBoolean
value.class
ClassRioSetting<T>
ARioSetting
with aClass
value.class
IntegerRioSetting
ARioSetting
with aInteger
value.class
LongRioSetting
ARioSetting
with aLong
value.class
RioSettingImpl<T>
Basic implementation ofRioSetting
interface, without support for default override via system properties.class
SetRioSetting<T>
ARioSetting
with aSet
value.class
StringRioSetting
ARioSetting
with aString
value.Fields in org.eclipse.rdf4j.rio.helpers declared as RioSetting Modifier and Type Field Description static RioSetting<XMLReader>
XMLParserSettings. CUSTOM_XML_READER
Parser setting to customise the XMLReader that is used by an XML based Rio parser.static RioSetting<List<DatatypeHandler>>
BasicParserSettings. DATATYPE_HANDLERS
Setting used to specify whichDatatypeHandler
implementations are to be used for a given parser configuration.static RioSetting<com.github.jsonldjava.core.DocumentLoader>
JSONLDSettings. DOCUMENT_LOADER
If specified, it is used to retrieve remote documents and contexts; otherwise the processor's built-in loader is used.static RioSetting<no.hasmac.jsonld.document.Document>
JSONLDSettings. EXPAND_CONTEXT
The JSON-LD context to use when expanding JSON-LDstatic RioSetting<no.hasmac.jsonld.document.Document>
JSONLDSettings. FRAME
static RioSetting<JSONLDMode>
JSONLDSettings. JSONLD_MODE
TheJSONLDMode
that the writer will use to reorganise the JSONLD document after it is created.static RioSetting<List<LanguageHandler>>
BasicParserSettings. LANGUAGE_HANDLERS
Setting used to specify whichLanguageHandler
implementations are to be used for a given parser configuration.static RioSetting<LargeLiteralHandling>
BasicParserSettings. LARGE_LITERALS_HANDLING
Boolean setting for parser to determine whether parser should preserve, truncate, drop, or otherwise manipulate statements that contain long literals.static RioSetting<Set<Namespace>>
BasicParserSettings. NAMESPACES
Setting to provide a collection ofNamespace
objects which will be used when parsing RDF as the basis for the default set of namespaces of the document.static RioSetting<RDFaVersion>
RDFaParserSettings. RDFA_COMPATIBILITY
Boolean setting for parser to determine the RDFa version to use when processing the document.Methods in org.eclipse.rdf4j.rio.helpers that return types with arguments of type RioSetting Modifier and Type Method Description Collection<RioSetting<Boolean>>
XMLReaderBasedParser. getCompulsoryXmlFeatureSettings()
Returns a collection of settings that will always be set as XML parser features usingXMLReader.setFeature(String, boolean)
.Collection<RioSetting<?>>
XMLReaderBasedParser. getCompulsoryXmlPropertySettings()
Returns a collection of settings that will always be set as XML parser properties usingXMLReader.setProperty(String, Object)
Collection<RioSetting<Boolean>>
XMLReaderBasedParser. getOptionalXmlFeatureSettings()
Returns a collection of settings that will be used, if set inAbstractRDFParser.getParserConfig()
, as XML parser features usingXMLReader.setFeature(String, boolean)
.Collection<RioSetting<?>>
XMLReaderBasedParser. getOptionalXmlPropertySettings()
Returns a collection of settings that will be used, if set inAbstractRDFParser.getParserConfig()
, as XML parser properties usingXMLReader.setProperty(String, Object)
Collection<RioSetting<?>>
AbstractRDFParser. getSupportedSettings()
Collection<RioSetting<?>>
AbstractRDFWriter. getSupportedSettings()
Methods in org.eclipse.rdf4j.rio.helpers with parameters of type RioSetting Modifier and Type Method Description protected void
AbstractRDFParser. reportError(Exception e, long lineNo, long columnNo, RioSetting<Boolean> relevantSetting)
Reports an error with associated line- and column number to the registered ParseErrorListener, if the given setting has been set to true.protected void
AbstractRDFParser. reportError(Exception e, RioSetting<Boolean> relevantSetting)
Reports an error with associated line- and column number to the registered ParseErrorListener, if the given setting has been set to true.protected void
AbstractRDFParser. reportError(String msg, long lineNo, long columnNo, RioSetting<Boolean> relevantSetting)
Reports an error with associated line- and column number to the registered ParseErrorListener, if the given setting has been set to true.protected void
AbstractRDFParser. reportError(String msg, Exception e, long lineNo, long columnNo, RioSetting<Boolean> relevantSetting)
Reports an error with associated line- and column number to the registered ParseErrorListener, if the given setting has been set to true.protected void
AbstractRDFParser. reportError(String msg, RioSetting<Boolean> relevantSetting)
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(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.<T> RDFParser
AbstractRDFParser. set(RioSetting<T> setting, T value)
<T> RDFWriter
AbstractRDFWriter. set(RioSetting<T> setting, T value)
-
Uses of RioSetting in org.eclipse.rdf4j.rio.jsonld
Methods in org.eclipse.rdf4j.rio.jsonld that return types with arguments of type RioSetting Modifier and Type Method Description Collection<RioSetting<?>>
JSONLDParser. getSupportedSettings()
Collection<RioSetting<?>>
JSONLDWriter. getSupportedSettings()
-
Uses of RioSetting in org.eclipse.rdf4j.rio.jsonld.legacy
Methods in org.eclipse.rdf4j.rio.jsonld.legacy that return types with arguments of type RioSetting Modifier and Type Method Description Collection<RioSetting<?>>
JSONLDParser. getSupportedSettings()
Collection<RioSetting<?>>
JSONLDWriter. getSupportedSettings()
-
Uses of RioSetting in org.eclipse.rdf4j.rio.n3
Methods in org.eclipse.rdf4j.rio.n3 that return types with arguments of type RioSetting Modifier and Type Method Description Collection<RioSetting<?>>
N3Writer. getSupportedSettings()
Methods in org.eclipse.rdf4j.rio.n3 with parameters of type RioSetting Modifier and Type Method Description <T> RDFWriter
N3Writer. set(RioSetting<T> setting, T value)
-
Uses of RioSetting in org.eclipse.rdf4j.rio.ndjsonld
Methods in org.eclipse.rdf4j.rio.ndjsonld that return types with arguments of type RioSetting Modifier and Type Method Description Collection<RioSetting<?>>
NDJSONLDWriter. getSupportedSettings()
-
Uses of RioSetting in org.eclipse.rdf4j.rio.ndjsonld.legacy
Methods in org.eclipse.rdf4j.rio.ndjsonld.legacy that return types with arguments of type RioSetting Modifier and Type Method Description Collection<RioSetting<?>>
NDJSONLDWriter. getSupportedSettings()
-
Uses of RioSetting in org.eclipse.rdf4j.rio.ntriples
Methods in org.eclipse.rdf4j.rio.ntriples that return types with arguments of type RioSetting Modifier and Type Method Description Collection<RioSetting<?>>
NTriplesParser. getSupportedSettings()
Collection<RioSetting<?>>
NTriplesWriter. getSupportedSettings()
Methods in org.eclipse.rdf4j.rio.ntriples with parameters of type RioSetting Modifier and Type Method Description protected void
NTriplesParser. reportError(Exception e, RioSetting<Boolean> setting)
protected void
NTriplesParser. reportError(String msg, RioSetting<Boolean> setting)
OverridesAbstractRDFParser.reportError(String, RioSetting)
, adding line number information to the error. -
Uses of RioSetting in org.eclipse.rdf4j.rio.rdfjson
Fields in org.eclipse.rdf4j.rio.rdfjson declared as RioSetting Modifier and Type Field Description static RioSetting<Boolean>
RDFJSONParserSettings. FAIL_ON_MULTIPLE_OBJECT_DATATYPES
Boolean setting for parser to determine whether an RDF/JSON parser should fail if it finds multiple datatypes for a single object in a single statement.static RioSetting<Boolean>
RDFJSONParserSettings. FAIL_ON_MULTIPLE_OBJECT_LANGUAGES
Boolean setting for parser to determine whether an RDF/JSON parser should fail if it finds multiple languages for a single object in a single statement.static RioSetting<Boolean>
RDFJSONParserSettings. FAIL_ON_MULTIPLE_OBJECT_TYPES
Boolean setting for parser to determine whether an RDF/JSON parser should fail if it finds multiple types for a single object in a single statement.static RioSetting<Boolean>
RDFJSONParserSettings. FAIL_ON_MULTIPLE_OBJECT_VALUES
Boolean setting for parser to determine whether an RDF/JSON parser should fail if it finds multiple values for a single object in a single statement.static RioSetting<Boolean>
RDFJSONParserSettings. FAIL_ON_UNKNOWN_PROPERTY
Boolean setting for parser to determine whether an RDF/JSON parser should fail if it finds multiple properties that it does not recognize in the JSON document.static RioSetting<Boolean>
RDFJSONParserSettings. SUPPORT_GRAPHS_EXTENSION
Boolean setting for parser to determine whether an RDF/JSON parser should support the graphs extension to make it a quads format.Methods in org.eclipse.rdf4j.rio.rdfjson that return types with arguments of type RioSetting Modifier and Type Method Description Collection<RioSetting<?>>
RDFJSONParser. getSupportedSettings()
Collection<RioSetting<?>>
RDFJSONWriter. getSupportedSettings()
Methods in org.eclipse.rdf4j.rio.rdfjson with parameters of type RioSetting Modifier and Type Method Description protected void
RDFJSONParser. reportError(String msg, com.fasterxml.jackson.core.JsonLocation location, RioSetting<Boolean> setting)
protected void
RDFJSONParser. reportError(String msg, Exception e, com.fasterxml.jackson.core.JsonLocation location, RioSetting<Boolean> setting)
-
Uses of RioSetting in org.eclipse.rdf4j.rio.rdfxml
Methods in org.eclipse.rdf4j.rio.rdfxml that return types with arguments of type RioSetting Modifier and Type Method Description Collection<RioSetting<?>>
RDFXMLParser. getSupportedSettings()
Collection<RioSetting<?>>
RDFXMLWriter. getSupportedSettings()
Methods in org.eclipse.rdf4j.rio.rdfxml with parameters of type RioSetting Modifier and Type Method Description protected void
RDFXMLParser. reportError(Exception e, RioSetting<Boolean> setting)
OverridesAbstractRDFParser.reportError(String, RioSetting)
, adding line- and column number information to the error.protected void
RDFXMLParser. reportError(String msg, RioSetting<Boolean> setting)
OverridesAbstractRDFParser.reportError(String, RioSetting)
, adding line- and column number information to the error. -
Uses of RioSetting in org.eclipse.rdf4j.rio.rdfxml.util
Methods in org.eclipse.rdf4j.rio.rdfxml.util that return types with arguments of type RioSetting Modifier and Type Method Description Collection<RioSetting<?>>
RDFXMLPrettyWriter. getSupportedSettings()
-
Uses of RioSetting in org.eclipse.rdf4j.rio.trix
Methods in org.eclipse.rdf4j.rio.trix that return types with arguments of type RioSetting Modifier and Type Method Description Collection<RioSetting<?>>
TriXParser. getSupportedSettings()
Methods in org.eclipse.rdf4j.rio.trix with parameters of type RioSetting Modifier and Type Method Description protected void
TriXParser. reportError(String msg, RioSetting<Boolean> setting)
OverridesAbstractRDFParser.reportError(String, RioSetting)
, adding line- and column number information to the error. -
Uses of RioSetting in org.eclipse.rdf4j.rio.turtle
Methods in org.eclipse.rdf4j.rio.turtle that return types with arguments of type RioSetting Modifier and Type Method Description Collection<RioSetting<?>>
TurtleParser. getSupportedSettings()
Collection<RioSetting<?>>
TurtleWriter. getSupportedSettings()
Methods in org.eclipse.rdf4j.rio.turtle with parameters of type RioSetting Modifier and Type Method Description protected void
TurtleParser. reportError(String msg, RioSetting<Boolean> setting)
OverridesAbstractRDFParser.reportError(String, RioSetting)
, adding line number information to the error. -
Uses of RioSetting in org.eclipse.rdf4j.testsuite.query.resultio
Methods in org.eclipse.rdf4j.testsuite.query.resultio that return RioSetting Modifier and Type Method Description protected abstract RioSetting<?>[]
AbstractTupleQueryResultWriterTest. getExpectedSupportedSettings()
Get theRioSetting
s expected to be returned byQueryResultWriter.getSupportedSettings()
.
-