| com.hp.hpl.jena.rdf.model.RDFVisitor
RDFVisitor | public interface RDFVisitor (Code) | | author: kers author: The interface for visiting (ie type-dispatching) an RDF Node. |
visitBlank | Object visitBlank(Resource r, AnonId id)(Code) | | Method to call when visiting a blank node r with identifier id.
Parameters: r - the blank RDF node being visited Parameters: id - the identifier of that node value to be returned from the visit |
visitLiteral | Object visitLiteral(Literal l)(Code) | | Method to call when visiting a literal RDF node l.
Parameters: l - the RDF Literal node a value to be returned from the visit |
visitURI | Object visitURI(Resource r, String uri)(Code) | | Method to call when visiting a URI node r with the given uri.
Parameters: r - the URI node being visited Parameters: uri - the URI string of that node value to be returned from the visit |
|
|