Uses of Class
com.github.jsonldjava.core.JsonLdOptions
Packages that use JsonLdOptions
-
Uses of JsonLdOptions in com.github.jsonldjava.core
Fields in com.github.jsonldjava.core declared as JsonLdOptionsModifier and TypeFieldDescriptionprivate JsonLdOptions
Context.options
private final JsonLdOptions
NormalizeUtils.options
(package private) JsonLdOptions
JsonLdApi.opts
Methods in com.github.jsonldjava.core that return JsonLdOptionsModifier and TypeMethodDescriptionJsonLdOptions.copy()
Creates a shallow copy of this JsonLdOptions object.Methods in com.github.jsonldjava.core with parameters of type JsonLdOptionsModifier and TypeMethodDescriptionJsonLdProcessor.compact
(Object input, Object context, JsonLdOptions opts) Compacts the given input using the context according to the steps in the Compaction algorithm.JsonLdProcessor.expand
(Object input, JsonLdOptions opts) Expands the given input according to the steps in the Expansion algorithm.static Object
JsonLdProcessor.flatten
(Object input, JsonLdOptions opts) Flattens the given input and compacts it using the passed context according to the steps in the Flattening algorithm:static Object
JsonLdProcessor.flatten
(Object input, Object context, JsonLdOptions opts) JsonLdProcessor.frame
(Object input, Object frame, JsonLdOptions opts) Frames the given input using the frame according to the steps in the Framing Algorithm.static Object
JsonLdProcessor.fromRDF
(Object dataset, JsonLdOptions options) Converts an RDF dataset to JSON-LD.static Object
JsonLdProcessor.fromRDF
(Object input, JsonLdOptions options, RDFParser parser) Converts an RDF dataset to JSON-LD, using a specific instance ofRDFParser
.private void
Context.init
(JsonLdOptions options) static Object
JsonLdProcessor.normalize
(Object input, JsonLdOptions options) Performs RDF dataset normalization on the given JSON-LD input.(package private) static Object
JsonLdUtils.removePreserve
(Context ctx, Object input, JsonLdOptions opts) Removes the @preserve keywords as the last step of the framing algorithm.private static Object
JsonLdProcessor.returnedContext
(Object context, JsonLdOptions opts) Builds the context to be returned in framing, flattening and compaction algorithms.static Object
JsonLdProcessor.toRDF
(Object input, JsonLdOptions options) Outputs the RDF dataset found in the given JSON-LD object.static Object
JsonLdProcessor.toRDF
(Object input, JsonLdTripleCallback callback, JsonLdOptions options) Outputs the RDF dataset found in the given JSON-LD object.Constructors in com.github.jsonldjava.core with parameters of type JsonLdOptionsModifierConstructorDescriptionContext
(JsonLdOptions opts) Context
(Object context, JsonLdOptions opts) Context
(Map<String, Object> map, JsonLdOptions opts) FramingContext
(JsonLdOptions opts) JsonLdApi
(JsonLdOptions opts) Constructs an empty JsonLdApi object using the given JsonLdOptions, and without initialization.JsonLdApi
(Object input, JsonLdOptions opts) Constructs a JsonLdApi object using the given object as the initial JSON-LD object, and the given JsonLdOptions.JsonLdApi
(Object input, Object context, JsonLdOptions opts) Constructs a JsonLdApi object using the given object as the initial JSON-LD object, the given context, and the given JsonLdOptions.NormalizeUtils
(List<Object> quads, Map<String, Object> bnodes, UniqueNamer namer, JsonLdOptions options)