How to create a blank node as a resource object in Jena when assigning yourself the banknode identifier ?
NodeFactory.createBlankNode(UUIDs.random().toString)
I want to make that a resource so i can add it in a statement.
I tried the following but i am not sure that i am doing the right thing.
ResourceFactory.createResource(NodeFactory.createBlankNode(UUIDs.random().toString).getBlankNodeLabel)
Can anyone advise me here ?