Uses of Class
com.github.jsonldjava.core.RDFDataset
-
Packages that use RDFDataset Package Description com.github.jsonldjava.core com.github.jsonldjava.impl -
-
Uses of RDFDataset in com.github.jsonldjava.core
Methods in com.github.jsonldjava.core that return RDFDataset Modifier and Type Method Description RDFDatasetRDFParser. parse(java.lang.Object input)Parse the input into the internal RDF Dataset format The format is a Map with the following structure: { GRAPH_1: [ TRIPLE_1, TRIPLE_2, ..., TRIPLE_N ], GRAPH_2: [ TRIPLE_1, TRIPLE_2, ..., TRIPLE_N ], ...static RDFDatasetRDFDatasetUtils. parseNQuads(java.lang.String input)Parses RDF in the form of N-Quads.RDFDatasetJsonLdApi. toRDF()Adds RDF triples for each graph in the current node map to an RDF dataset.Methods in com.github.jsonldjava.core with parameters of type RDFDataset Modifier and Type Method Description java.lang.ObjectJsonLdTripleCallback. call(RDFDataset dataset)Construct output based on internal RDF dataset formatjava.util.List<java.lang.Object>JsonLdApi. fromRDF(RDFDataset dataset)Converts RDF statements into JSON-LD.java.util.List<java.lang.Object>JsonLdApi. fromRDF(RDFDataset dataset, boolean noDuplicatesInDataset)Converts RDF statements into JSON-LD, presuming that there are no duplicates in the dataset.static java.lang.StringRDFDatasetUtils. toNQuads(RDFDataset dataset)static voidRDFDatasetUtils. toNQuads(RDFDataset dataset, java.lang.StringBuilder output) -
Uses of RDFDataset in com.github.jsonldjava.impl
Methods in com.github.jsonldjava.impl that return RDFDataset Modifier and Type Method Description RDFDatasetNQuadRDFParser. parse(java.lang.Object input)Methods in com.github.jsonldjava.impl with parameters of type RDFDataset Modifier and Type Method Description java.lang.ObjectNQuadTripleCallback. call(RDFDataset dataset)
-