Jena alternative of ModelBuilder in RDF4J
问题 Is there some Interface available in Apache Jena like ModelBuilder in RDF4J? I can see ModelMaker in Jena but that is not something similar to builder I suppose. Following is the function using rdf4j that need to be implemented in Jena: public static org.eclipse.rdf4j.model.Model convertGraph2RDFModel(Graph graph, String label) { ModelBuilder builder = new ModelBuilder(); GraphTraversalSource t = graph.traversal(); GraphTraversal<Vertex, Vertex> hasLabel = t.V().hasLabel(label); Vertex s; if