Package com.github.jsonldjava.impl

Examples of com.github.jsonldjava.impl.JenaRDFParser


    return callback.getJenaModel();
  }

  @Override
  public String serialize(Model model) throws IOException {
    JenaRDFParser serializer = new JenaRDFParser();
    serializer.importModel(new RDFDataset(), model);
    try {
      return JSONUtils.toString(JSONLD.fromRDF(model, serializer));
    } catch (JSONLDProcessingError e) {
      throw new IOException(e);
    }
View Full Code Here

TOP

Related Classes of com.github.jsonldjava.impl.JenaRDFParser

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.