Uses of Interface
org.eclipse.rdf4j.rio.RioSetting
-
Packages that use RioSetting Package Description org.eclipse.rdf4j.rio Rio: The RDF4J parser/writer API.org.eclipse.rdf4j.rio.helpers Provides helpers classes for Rio. -
-
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. settingsA map containing mappings from settings to their values.protected ConcurrentMap<RioSetting<Object>,Object>RioConfig. systemPropertyCacheA 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.Map<RioSetting<Object>,Object>RioConfig. getSettings()Collection<RioSetting<?>>RDFParser. getSupportedSettings()Collection<RioSetting<?>>RDFWriter. getSupportedSettings()Methods in org.eclipse.rdf4j.rio with parameters of type RioSetting Modifier and Type Method Description ParserConfigParserConfig. 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> TRioConfig. get(RioSetting<T> setting)Return the value for a givenRioSettingor the default value if it has not been set.booleanParserConfig. 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> booleanRioConfig. isSet(RioSetting<T> setting)Checks for whether aRioSettinghas been explicitly set by a user.<T> ParserConfigParserConfig. set(RioSetting<T> setting, T value)<T> RDFParserRDFParser. set(RioSetting<T> setting, T value)Set a setting on the parser, and return this parser object to allow chaining.<T> RDFWriterRDFWriter. set(RioSetting<T> setting, T value)Set a setting on the writer, and return this writer object to allow chaining.<T> RioConfigRioConfig. set(RioSetting<T> setting, T value)Sets aRioSettingto have a new value.<T> WriterConfigWriterConfig. set(RioSetting<T> setting, T value)Method parameters in org.eclipse.rdf4j.rio with type arguments of type RioSetting Modifier and Type Method Description ParserConfigParserConfig. 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.helpers
Classes in org.eclipse.rdf4j.rio.helpers that implement RioSetting Modifier and Type Class Description classAbstractRioSetting<T>Base class forRioSetting.classBooleanRioSettingARioSettingwith aBooleanvalue.classClassRioSetting<T>ARioSettingwith aClassvalue.classIntegerRioSettingARioSettingwith aIntegervalue.classLongRioSettingARioSettingwith aLongvalue.classRioSettingImpl<T>Basic implementation ofRioSettinginterface, without support for default override via system properties.classSetRioSetting<T>ARioSettingwith aSetvalue.classStringRioSettingARioSettingwith aStringvalue.Fields in org.eclipse.rdf4j.rio.helpers declared as RioSetting Modifier and Type Field Description static RioSetting<XMLReader>XMLParserSettings. CUSTOM_XML_READERParser setting to customise the XMLReader that is used by an XML based Rio parser.static RioSetting<List<DatatypeHandler>>BasicParserSettings. DATATYPE_HANDLERSSetting used to specify whichDatatypeHandlerimplementations are to be used for a given parser configuration.static RioSetting<com.github.jsonldjava.core.DocumentLoader>JSONLDSettings. DOCUMENT_LOADERIf 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_CONTEXTThe JSON-LD context to use when expanding JSON-LDstatic RioSetting<no.hasmac.jsonld.document.Document>JSONLDSettings. FRAMEstatic RioSetting<JSONLDMode>JSONLDSettings. JSONLD_MODETheJSONLDModethat the writer will use to reorganise the JSONLD document after it is created.static RioSetting<List<LanguageHandler>>BasicParserSettings. LANGUAGE_HANDLERSSetting used to specify whichLanguageHandlerimplementations are to be used for a given parser configuration.static RioSetting<LargeLiteralHandling>BasicParserSettings. LARGE_LITERALS_HANDLINGBoolean setting for parser to determine whether parser should preserve, truncate, drop, or otherwise manipulate statements that contain long literals.static RioSetting<Set<org.eclipse.rdf4j.model.Namespace>>BasicParserSettings. NAMESPACESSetting to provide a collection ofNamespaceobjects which will be used when parsing RDF as the basis for the default set of namespaces of the document.static RioSetting<RDFaVersion>RDFaParserSettings. RDFA_COMPATIBILITYBoolean 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 voidAbstractRDFParser. 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 voidAbstractRDFParser. 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 voidAbstractRDFParser. 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 voidAbstractRDFParser. 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 voidAbstractRDFParser. 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 voidRDFParserHelper. 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 voidRDFParserHelper. 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 voidRDFParserHelper. 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> RDFParserAbstractRDFParser. set(RioSetting<T> setting, T value)<T> RDFWriterAbstractRDFWriter. set(RioSetting<T> setting, T value)
-