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 RDFDataset
RDFParser. 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 RDFDataset
RDFDatasetUtils. parseNQuads(java.lang.String input)
Parses RDF in the form of N-Quads.RDFDataset
JsonLdApi. 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.Object
JsonLdTripleCallback. 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.String
RDFDatasetUtils. toNQuads(RDFDataset dataset)
static void
RDFDatasetUtils. 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 RDFDataset
NQuadRDFParser. parse(java.lang.Object input)
Methods in com.github.jsonldjava.impl with parameters of type RDFDataset Modifier and Type Method Description java.lang.Object
NQuadTripleCallback. call(RDFDataset dataset)
-