Uses of Interface
org.jrdf.graph.PredicateNode

Packages that use PredicateNode
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 PredicateNode in org.jrdf.graph
 

Subinterfaces of PredicateNode in org.jrdf.graph
 interface URIReference
          RDF URI reference - resource node.
 

Classes in org.jrdf.graph that implement PredicateNode
 class AbstractURIReference
          A base implementation of an RDF URIReference.
 

Fields in org.jrdf.graph declared as PredicateNode
protected  PredicateNode AbstractTriple.predicateNode
          Predicate of this statement.
 

Methods in org.jrdf.graph that return PredicateNode
 PredicateNode AbstractTriple.getPredicate()
          Obtains the predicate of this statement.
 PredicateNode Triple.getPredicate()
          Obtains the predicate of this statement.
 

Methods in org.jrdf.graph with parameters of type PredicateNode
 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 PredicateNode in org.jrdf.graph.mem
 

Classes in org.jrdf.graph.mem that implement PredicateNode
 class URIReferenceImpl
          RDF URI reference - resource node.
 

Methods in org.jrdf.graph.mem with parameters of type PredicateNode
 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 PredicateNode in org.jrdf.parser
 

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