On Wednesday, September 11, 2013 07:28:33 PM [email protected] wrote: > Is there a Jena stmt/triple iterator feeding items in order ? > I looked around the Jena API list to find, but no luck. However, > the 'Model.write(outputStream, lang)' method produces triple > listing in hierarchy with indentation - wonder how the method > produces such listing.
Is Model.listStatements() what you're looking for? [Note: there is no "in order"; the statements come out in some unspecified implementation-specific order.] Chris
