Uses of Interface
org.jrdf.graph.ObjectNode

Packages that use ObjectNode
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   
 

Uses of ObjectNode in org.jrdf.graph
 

Subinterfaces of ObjectNode in org.jrdf.graph
 interface BlankNode
          RDF blank node.
 interface Literal
          RDF literal node.
 interface URIReference
          RDF URI reference - resource node.
 

Classes in org.jrdf.graph that implement ObjectNode
 class AbstractBlankNode
          A base implementation of an RDF BlankNode.
 class AbstractLiteral
          A base implementation of an RDF Literal.
 class AbstractURIReference
          A base implementation of an RDF URIReference.
 

Fields in org.jrdf.graph declared as ObjectNode
protected  ObjectNode AbstractTriple.objectNode
          Object of this statement.
 

Methods in org.jrdf.graph that return ObjectNode
 ObjectNode AbstractTriple.getObject()
          Obtains the object of this statement.
 ObjectNode Triple.getObject()
          Obtains the object of this statement.
 

Methods in org.jrdf.graph with parameters of type ObjectNode
 void AbstractTripleFactory.reifyTriple(SubjectNode subjectNode, PredicateNode predicateNode, ObjectNode objectNode, SubjectNode reificationNode)
          Reifies a triple.
 boolean Graph.contains(SubjectNode subject, PredicateNode predicate, ObjectNode object)
          Test the graph for the occurrence of a statement.
 ClosableIterator Graph.find(SubjectNode subject, PredicateNode predicate, ObjectNode object)
          Returns an iterator of Triples to a set of statements that match a given subject, predicate and object.
 void Graph.add(SubjectNode subject, PredicateNode predicate, ObjectNode object)
          Adds a triple to the graph.
 void Graph.remove(SubjectNode subject, PredicateNode predicate, ObjectNode object)
          Removes a triple from the graph.
 Triple GraphElementFactory.createTriple(SubjectNode subject, PredicateNode predicate, ObjectNode object)
          Creates a new triple to be used in the graph.
 void TripleFactory.reifyTriple(SubjectNode subjectNode, PredicateNode predicateNode, ObjectNode objectNode, SubjectNode reificationNode)
          Reifies a triple.
 

Uses of ObjectNode in org.jrdf.graph.mem
 

Classes in org.jrdf.graph.mem that implement ObjectNode
 class BlankNodeImpl
          RDF blank node.
 class LiteralImpl
          RDF literal node.
 class URIReferenceImpl
          RDF URI reference - resource node.
 

Methods in org.jrdf.graph.mem with parameters of type ObjectNode
 Triple GraphElementFactoryImpl.createTriple(SubjectNode subject, PredicateNode predicate, ObjectNode object)
          Creates a new triple to be used in the graph.
 boolean GraphImpl.contains(SubjectNode subject, PredicateNode predicate, ObjectNode object)
          Test the graph for the occurrence of a statement.
 ClosableIterator GraphImpl.find(SubjectNode subject, PredicateNode predicate, ObjectNode object)
          Returns an iterator to a set of statements that match a given subject, predicate and object.
 void GraphImpl.add(SubjectNode subject, PredicateNode predicate, ObjectNode object)
          Adds a triple to the graph.
 void GraphImpl.remove(SubjectNode subject, PredicateNode predicate, ObjectNode object)
          Removes a triple from the graph.
 

Uses of ObjectNode in org.jrdf.parser
 

Methods in org.jrdf.parser with parameters of type ObjectNode
 void StatementHandler.handleStatement(SubjectNode subject, PredicateNode predicate, ObjectNode object)
          Called by an RDF parser when it has parsed a statement.