Class JSONLDSettings
- Author:
- Peter Ansell
- See Also:
-
Field Summary
Modifier and TypeFieldDescriptionstatic final RioSetting<Boolean>
If set to true, the JSON-LD processor replaces arrays with just one element with that element during compaction.static final RioSetting<com.github.jsonldjava.core.DocumentLoader>
If specified, it is used to retrieve remote documents and contexts; otherwise the processor's built-in loader is used.static final RioSetting<Boolean>
If set to true, the JSON-LD processor will try to represent the JSON-LD object in a hierarchical view.static final RioSetting<JSONLDMode>
TheJSONLDMode
that the writer will use to reorganise the JSONLD document after it is created.static final RioSetting<Boolean>
If set to true, the JSON-LD processor is allowed to optimize the output of the Compaction algorithm to produce even compacter representations.static final RioSetting<Boolean>
If set to true, the JSON-LD processor may emit blank nodes for triple predicates, otherwise they will be omitted.static final RioSetting<Boolean>
If set to true, the JSON-LD processor will try to convert typed values to JSON native types instead of using the expanded object form when converting from RDF.static final RioSetting<Boolean>
If set to true, the JSON-LD processor will use the expanded rdf:type IRI as the property instead of @type when converting from RDF. -
Method Summary
-
Field Details
-
COMPACT_ARRAYS
If set to true, the JSON-LD processor replaces arrays with just one element with that element during compaction. If set to false, all arrays will remain arrays even if they have just one element.Defaults to true.
Can be overridden by setting system property
org.eclipse.rdf4j.rio.jsonld.compact_arrays
.- See Also:
-
DOCUMENT_LOADER
If specified, it is used to retrieve remote documents and contexts; otherwise the processor's built-in loader is used. -
OPTIMIZE
If set to true, the JSON-LD processor is allowed to optimize the output of the Compaction algorithm to produce even compacter representations.Defaults to false.
Can be overridden by setting system property
org.eclipse.rdf4j.rio.jsonld.optimize
.- See Also:
-
PRODUCE_GENERALIZED_RDF
If set to true, the JSON-LD processor may emit blank nodes for triple predicates, otherwise they will be omitted. Note: the use of blank node identifiers to label properties is obsolete, and may be removed in a future version of JSON-LD,Defaults to false.
Can be overridden by setting system property
org.eclipse.rdf4j.rio.jsonld.produce_generalized_rdf
.- See Also:
-
USE_NATIVE_TYPES
If set to true, the JSON-LD processor will try to convert typed values to JSON native types instead of using the expanded object form when converting from RDF. xsd:boolean values will be converted to true or false. xsd:integer and xsd:double values will be converted to JSON numbers.Defaults to false for RDF compatibility.
Can be overridden by setting system property
org.eclipse.rdf4j.rio.jsonld.use_native_types
.- See Also:
-
USE_RDF_TYPE
If set to true, the JSON-LD processor will use the expanded rdf:type IRI as the property instead of @type when converting from RDF.Defaults to false.
Can be overridden by setting system property
org.eclipse.rdf4j.rio.jsonld.use_rdf_type
.- See Also:
-
JSONLD_MODE
TheJSONLDMode
that the writer will use to reorganise the JSONLD document after it is created.Defaults to
JSONLDMode.EXPAND
to provide maximum RDF compatibility.- See Also:
-
HIERARCHICAL_VIEW
If set to true, the JSON-LD processor will try to represent the JSON-LD object in a hierarchical view.Default to false
Can be overridden by setting system property
org.eclipse.rdf4j.rio.jsonld.hierarchical_view
.
-