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   
org.jrdf.parser   
org.jrdf.parser.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 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
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.
 BlankNode GraphElementFactoryImpl.createResource()
          Create a blank nodes that is associated with a specific graph.
 

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.