Hi, I have a RDF statement that I have added to the Jena model. The statement contains a blank node.
_:blankNode <urn:b> <urn:c> .
To identify this blank node, I am using the isAnon method.
// Scala code
model.listStatements().toList().foreach(f =>
println(f.getSubject.getLocalName + " " + f.getSubject.isAnon))
//
For some reason, true is not being returned for the blank node.
Am I using the correct approach?
--
Aidy
