Uses of Interface
org.jrdf.graph.SubjectNode

Packages that use SubjectNode
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.ntriples.parser   
org.jrdf.writer.rdfxml   
 

Uses of SubjectNode in org.jrdf.graph
 

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

Classes in org.jrdf.graph that implement SubjectNode
 class AbstractBlankNode
          A base implementation of an RDF BlankNode.
 class AbstractURIReference
          A base implementation of an RDF URIReference.
 class AnySubjectNode
          A node which represents any subject - unconstrained.
 

Fields in org.jrdf.graph declared as SubjectNode
protected  SubjectNode AbstractTriple.subjectNode
          The internal representation of the triple - subject node.
 

Methods in org.jrdf.graph that return SubjectNode
 SubjectNode Triple.getSubject()
          Obtains the subject of this statement.
 SubjectNode AbstractTriple.getSubject()
          Obtains the subject of this statement.
 

Methods in org.jrdf.graph with parameters of type SubjectNode
 void Graph.add(SubjectNode subject, PredicateNode predicate, ObjectNode object)
          Adds a triple to the graph.
 void TripleFactory.addAlternative(SubjectNode subjectNode, Alternative<ObjectNode> alternative)
          Inserts a alternative using the given subject.
 void AbstractTripleFactory.addAlternative(SubjectNode subjectNode, Alternative<ObjectNode> alternative)
           
 void TripleFactory.addBag(SubjectNode subjectNode, Bag<ObjectNode> bag)
          Inserts a bag using the given subject.
 void AbstractTripleFactory.addBag(SubjectNode subjectNode, Bag<ObjectNode> bag)
           
 void TripleFactory.addCollection(SubjectNode firstNode, Collection<ObjectNode> collection)
          Inserts a collection using the given subject.
 void AbstractTripleFactory.addCollection(SubjectNode firstNode, Collection<ObjectNode> collection)
           
 void TripleFactory.addSequence(SubjectNode subjectNode, Sequence<ObjectNode> sequence)
          Inserts a sequence using the given subject.
 void AbstractTripleFactory.addSequence(SubjectNode subjectNode, Sequence<ObjectNode> sequence)
           
 boolean Graph.contains(SubjectNode subject, PredicateNode predicate, ObjectNode object)
          Test the graph for the occurrence of a statement.
 Triple TripleFactory.createTriple(SubjectNode subject, PredicateNode predicate, ObjectNode object)
          Creates a new triple to be used in the graph.
 ClosableIterator<Triple> 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 TripleFactory.reifyTriple(SubjectNode subjectNode, PredicateNode predicateNode, ObjectNode objectNode, SubjectNode reificationNode)
          Reifies a triple.
 void AbstractTripleFactory.reifyTriple(SubjectNode subjectNode, PredicateNode predicateNode, ObjectNode objectNode, SubjectNode reificationNode)
          Reifies a triple.
 void TripleFactory.reifyTriple(Triple triple, SubjectNode reificationNode)
          Reifies a triple.
 void AbstractTripleFactory.reifyTriple(Triple triple, SubjectNode reificationNode)
          Creates a reification of a triple.
 void Graph.remove(SubjectNode subject, PredicateNode predicate, ObjectNode object)
          Removes a triple from the graph.
 

Uses of SubjectNode in org.jrdf.graph.mem
 

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

Methods in org.jrdf.graph.mem with parameters of type SubjectNode
 void GraphImpl.add(SubjectNode subject, PredicateNode predicate, ObjectNode object)
           
 boolean GraphImpl.contains(SubjectNode subject, PredicateNode predicate, ObjectNode object)
           
 ClosableIterator<Triple> GraphImpl.find(SubjectNode subject, PredicateNode predicate, ObjectNode object)
           
 void GraphImpl.remove(SubjectNode subject, PredicateNode predicate, ObjectNode object)
           
 

Constructors in org.jrdf.graph.mem with parameters of type SubjectNode
TripleImpl(SubjectNode subject, PredicateNode predicate, ObjectNode object)
          Constructor for this Triple, only to be used by the NodeFactory.
 

Uses of SubjectNode in org.jrdf.parser
 

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

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

Methods in org.jrdf.parser.ntriples.parser that return SubjectNode
 SubjectNode SubjectParserImpl.parseSubject(RegexMatcher matcher)
           
 SubjectNode SubjectParser.parseSubject(RegexMatcher tripleRegexMatcher)
           
 

Uses of SubjectNode in org.jrdf.writer.rdfxml
 

Constructors in org.jrdf.writer.rdfxml with parameters of type SubjectNode
ResourceFooter(SubjectNode subject)
           
ResourceHeader(SubjectNode subject, BlankNodeRegistry registry)