Class BasicWriterSettings
- Author:
- Peter Ansell
-
Field Summary
Modifier and TypeFieldDescriptionstatic final RioSetting<Boolean>
Boolean setting for writer to determine whether it should include a base directive.static final RioSetting<Boolean>
Boolean setting for writer to determine whether it should convert RDF-star statements to standard RDF reification.static final RioSetting<Boolean>
Boolean setting for writer to determine whether it should encode RDF-star triple values to RDF-compatible special IRIs.static final RioSetting<Boolean>
Inline blanks nodes by their value and don't write any blank node labels when this setting is true.static final RioSetting<Boolean>
Boolean setting for writer to determine whether pretty printing is preferred.static final RioSetting<Boolean>
Boolean setting for writer to determine whether it should omit the rdf:langString datatype from language literals when serialising them.static final RioSetting<Boolean>
Boolean setting for writer to determine whether it should remove the xsd:string datatype from literals and represent them as RDF-1.0 Plain Literals. -
Method Summary
-
Field Details
-
PRETTY_PRINT
Boolean setting for writer to determine whether pretty printing is preferred.Defaults to true
Can be overridden by setting system property
org.eclipse.rdf4j.rio.pretty_print
. -
INLINE_BLANK_NODES
Inline blanks nodes by their value and don't write any blank node labels when this setting is true. This setting should only be used when blank nodes never appear in the context and there are no blank node cycles.WARNING: This setting requires all triples to be processed before being written and could use a lot of memory in the process and should be set to false for large RDF files.
Defaults to false.
Can be overridden by setting system property
org.eclipse.rdf4j.rio.inline_blank_nodes
.- Since:
- 2.3
-
XSD_STRING_TO_PLAIN_LITERAL
Boolean setting for writer to determine whether it should remove the xsd:string datatype from literals and represent them as RDF-1.0 Plain Literals.In RDF-1.1, all literals that would have been Plain Literals in RDF-1.0 will be typed as xsd:string internally.
Defaults to true to allow for backwards compatibility without enforcing it.
Can be overridden by setting system property
org.eclipse.rdf4j.rio.rdf10_plain_literals
. -
RDF_LANGSTRING_TO_LANG_LITERAL
Boolean setting for writer to determine whether it should omit the rdf:langString datatype from language literals when serialising them.In RDF-1.1, all RDF-1.0 Language Literals are typed using rdf:langString in the abstract model, but this datatype is not necessary for concrete syntaxes.
In most concrete syntaxes it is either syntactically invalid or semantically ambiguous to have a language tagged literal with an explicit datatype. In those cases this setting will not be used, and the rdf:langString datatype will not be attached to language tagged literals.
In particular, in RDF/XML, if rdf:langString is serialised, the language tag may not be retained when the document is parsed due to the precedence rule in RDF/XML for datatype over language.
Defaults to true as rdf:langString was not previously used, and should not be commonly required.
Can be overridden by setting system property
org.eclipse.rdf4j.rio.rdf10_language_literals
. -
BASE_DIRECTIVE
Boolean setting for writer to determine whether it should include a base directive.Defaults to true
Can be overridden by setting system property
org.eclipse.rdf4j.rio.base_directive
. -
CONVERT_RDF_STAR_TO_REIFICATION
Boolean setting for writer to determine whether it should convert RDF-star statements to standard RDF reification.Defaults to false
Can be overridden by setting system property
org.eclipse.rdf4j.rio.convert_rdf_star
. -
ENCODE_RDF_STAR
Boolean setting for writer to determine whether it should encode RDF-star triple values to RDF-compatible special IRIs. These IRIs start with urn:rdf4j:triple: followed by the base64-encoding of the N-Triples serialization of the RDF-star triple value.Writers that support RDF-star natively will ignore this setting and always serialize RDF-star triples.
Defaults to true.
Can be overridden by setting system property
org.eclipse.rdf4j.rio.encode_rdf_star
.
-