com.github.jsonldjava.impl.NQuadTripleCallback Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsonld-java Show documentation
Show all versions of jsonld-java Show documentation
Json-LD core implementation
package com.github.jsonldjava.impl;
import com.github.jsonldjava.core.JsonLdTripleCallback;
import com.github.jsonldjava.core.RDFDataset;
import com.github.jsonldjava.core.RDFDatasetUtils;
public class NQuadTripleCallback implements JsonLdTripleCallback {
@Override
public Object call(RDFDataset dataset) {
return RDFDatasetUtils.toNQuads(dataset);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy