Package org.coode.owlapi.turtle

Examples of org.coode.owlapi.turtle.TurtleOntologyFormat


  }
 
  private Graph convertOntology(OWLOntology ontology, boolean filterTypes) throws Exception {
    StringDocumentTarget output = new StringDocumentTarget();

    manager.saveOntology( ontology, new TurtleOntologyFormat(),  output );

    Model model = ModelFactory.createDefaultModel();
    model.read( new StringReader( output.toString() ), ontologyURI.toString(), "TTL" );

    if( filterTypes ) {
View Full Code Here

TOP

Related Classes of org.coode.owlapi.turtle.TurtleOntologyFormat

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.