getBlankNodeId: Get the blank identifier that has been assigned for a specified Node object
Description
Get the blank identifier that has been assigned for a specified Node object
Usage
getBlankNodeId(.Object)
# S4 method for Node
getBlankNodeId(.Object)
Arguments
.Object
a Node object
Value
a blank node identifier
Details
When a Node object is initialized with no value specified, i.e. node <- Node(""),
a blank node is created and a locally unique identifier is generated by librdf. This method
retrieves this identifier and returns in to the caller.
# NOT RUN {world <- new("World")
# a blank node is created with a unique identifier generated by librdfnode <- new("Node", world, blank=NULL)
nodeId <- getBlankNodeId(node)
# }