Uses of Interface
org.jrdf.graph.BlankNode

Packages that use BlankNode
org.jrdf.graph This package defines a set of APIs required to implement an RDF Graph and it's associated objects. 
org.jrdf.graph.mem This package is an implementation of the JRDF Graph API. 
org.jrdf.parser This package is a port of the Sesame RIO Parser. 
org.jrdf.parser.mem An in memory implementation of the parser interfaces. 
org.jrdf.parser.ntriples.parser   
org.jrdf.writer   
org.jrdf.writer.mem   
 

Uses of BlankNode in org.jrdf.graph
 

Classes in org.jrdf.graph that implement BlankNode
 class AbstractBlankNode
          A base implementation of an RDF BlankNode.
 

Methods in org.jrdf.graph that return BlankNode
 BlankNode GraphElementFactory.createResource()
          Create a blank nodes that is associated with a specific graph.
 

Methods in org.jrdf.graph with parameters of type BlankNode
 void TypedNodeVisitorAdapter.visitBlankNode(BlankNode blankNode)
          Visit blank node.
 void TypedNodeVisitor.visitBlankNode(BlankNode blankNode)
          Visit blank node.
 

Uses of BlankNode in org.jrdf.graph.mem
 

Classes in org.jrdf.graph.mem that implement BlankNode
 class BlankNodeImpl
          RDF blank node.
 

Methods in org.jrdf.graph.mem that return BlankNode
 BlankNode GraphElementFactoryImpl.createResource()
          Create a blank nodes that is associated with a specific graph.
static BlankNode BlankNodeImpl.valueOf(String nodeString)
          Parses a String in the format of: uid#id (eg. 29fbf7ba364f1425dda058737d764603#69) and creates a new BlankNodeImpl from it.
 

Uses of BlankNode in org.jrdf.parser
 

Methods in org.jrdf.parser that return BlankNode
 BlankNode ParserBlankNodeFactory.createBlankNode()
          Creates a BlankNode that is unique relative to this instance of the ParserBlankNodeFactory.
 BlankNode ParserBlankNodeFactory.createBlankNode(String nodeID)
          Creates a BlankNode that is only distinguished by the nodeID value.
 

Uses of BlankNode in org.jrdf.parser.mem
 

Methods in org.jrdf.parser.mem that return BlankNode
 BlankNode ParserBlankNodeFactoryImpl.createBlankNode()
          Always creates a new BlankNode object from the GraphElementFactory.
 BlankNode ParserBlankNodeFactoryImpl.createBlankNode(String nodeID)
          Returns the BlankNode for a nodeID that has not been seen before or calls the GraphElementFactory to create a new BlankNode otherwise.
 

Uses of BlankNode in org.jrdf.parser.ntriples.parser
 

Methods in org.jrdf.parser.ntriples.parser that return BlankNode
 BlankNode BlankNodeParserImpl.parseBlankNode(String s)
           
 BlankNode BlankNodeParser.parseBlankNode(String s)
           
 

Uses of BlankNode in org.jrdf.writer
 

Methods in org.jrdf.writer with parameters of type BlankNode
 String BlankNodeRegistry.getNodeId(BlankNode node)
          If the node has already been registered, it's node Id is returned, otherwise it is registered and the new node Id is returned.
 

Uses of BlankNode in org.jrdf.writer.mem
 

Methods in org.jrdf.writer.mem with parameters of type BlankNode
 String BlankNodeRegistryImpl.getNodeId(BlankNode node)