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.global   
org.jrdf.graph.global.iterator   
org.jrdf.graph.global.molecule   
org.jrdf.graph.local.mem This package is an implementation of the JRDF Graph API. 
org.jrdf.graph.local.mem.iterator   
org.jrdf.graph.local.util   
org.jrdf.parser This package is a port of the Sesame RIO Parser. 
org.jrdf.parser.ntriples.parser   
org.jrdf.writer.rdfxml   
 

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 Resource
          A resource stands for either a Blank Node or a URI Reference.
 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.
 class AnyNode
          A node which represents any node (subject, predicate or object) - unconstrained.
 class AnyObjectNode
          A node which represents any object - unconstrained.
 

Fields in org.jrdf.graph declared as ObjectNode
protected  ObjectNode AbstractTriple.objectNode
          The internal representation of the triple - object node.
 

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

Methods in org.jrdf.graph that return types with arguments of type ObjectNode
 ClosableIterator<ObjectNode> Resource.getObjects(PredicateNode predicate)
          With this as the subject and using the given predicate return all the objects.
 

Methods in org.jrdf.graph with parameters of type ObjectNode
 void Graph.add(SubjectNode subject, PredicateNode predicate, ObjectNode object)
          Adds a triple to the graph.
 void Resource.addValue(PredicateNode predicate, ObjectNode object)
          Add a new triple with this as the subject, the given predicate and object.
 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.
 Triple AbstractTripleFactory.createTriple(SubjectNode subject, PredicateNode predicate, ObjectNode object)
           
 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. 4 statements are added with the given subject, predicate and object.
 void AbstractTripleFactory.reifyTriple(SubjectNode subjectNode, PredicateNode predicateNode, ObjectNode objectNode, SubjectNode reificationNode)
           
 void Graph.remove(SubjectNode subject, PredicateNode predicate, ObjectNode object)
          Removes a triple from the graph.
 void Resource.removeValue(PredicateNode predicate, ObjectNode object)
          Remove the triple with this as the subject, the given predicate and object.
 void Resource.setValue(PredicateNode predicate, ObjectNode object)
          Remove any other triples with this as the subject, the given predicate and any object and add a new triple with this as the subject and the given predicate and object.
 

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

Uses of ObjectNode in org.jrdf.graph.global
 

Classes in org.jrdf.graph.global that implement ObjectNode
 class BlankNodeImpl
          Globalized implementation of a BlankNode.
 class LiteralImpl
           
 class URIReferenceImpl
          Globalized implementation of a URIReferenfce.
 

Methods in org.jrdf.graph.global with parameters of type ObjectNode
 boolean GlobalizedGraphImpl.contains(SubjectNode subject, PredicateNode predicate, ObjectNode object)
           
 boolean GlobalizedGraph.contains(SubjectNode subject, PredicateNode predicate, ObjectNode object)
          Check to see if the given triple exists within the graph.
protected  boolean AbstractGlobalizedGraph.containsValue(SubjectNode subject, PredicateNode predicate, ObjectNode object)
           
 ClosableIterator<Molecule> GlobalizedGraphImpl.find(SubjectNode subject, PredicateNode predicate, ObjectNode object)
           
 ClosableIterator<Molecule> GlobalizedGraph.find(SubjectNode subject, PredicateNode predicate, ObjectNode object)
          Find a triple that may contain wildcards - any subject, any predicate, and any object.
protected  ClosableIterator<Molecule> AbstractGlobalizedGraph.findValue(SubjectNode subject, PredicateNode predicate, ObjectNode object)
           
 

Uses of ObjectNode in org.jrdf.graph.global.iterator
 

Methods in org.jrdf.graph.global.iterator with parameters of type ObjectNode
 ClosableIterator<Molecule> NonEmptyIteratorFactory.getIterator(SubjectNode subj, PredicateNode pred, ObjectNode obj)
           
 

Constructors in org.jrdf.graph.global.iterator with parameters of type ObjectNode
ThreeFixedIterator(SubjectNode subjNode, PredicateNode predNode, ObjectNode objNode, MoleculeIndex[] newIndexes)
           
 

Uses of ObjectNode in org.jrdf.graph.global.molecule
 

Methods in org.jrdf.graph.global.molecule with parameters of type ObjectNode
 boolean NewMoleculeImpl.contains(SubjectNode subject, PredicateNode predicate, ObjectNode object)
           
 boolean MoleculeImpl.contains(SubjectNode subject, PredicateNode predicate, ObjectNode object)
           
 boolean Molecule.contains(SubjectNode subject, PredicateNode predicate, ObjectNode object)
          Checks to see if the given triple exists within the molecule.
 boolean HeadMoleculeImpl.contains(SubjectNode subject, PredicateNode predicate, ObjectNode object)
           
 void MoleculeParserStatementHandler.handleStatement(SubjectNode subject, PredicateNode predicate, ObjectNode object)
           
 ClosableIterator<Molecule> MoleculeIteratorFactoryImpl.newThreeFixedIterator(SubjectNode subjNode, PredicateNode predNode, ObjectNode objNode)
           
 ClosableIterator<Molecule> MoleculeIteratorFactory.newThreeFixedIterator(SubjectNode subjNode, PredicateNode predNode, ObjectNode objNode)
           
 

Uses of ObjectNode in org.jrdf.graph.local.mem
 

Subinterfaces of ObjectNode in org.jrdf.graph.local.mem
 interface LiteralMutableId
           
 

Classes in org.jrdf.graph.local.mem that implement ObjectNode
 class AbstractResource
           
 class BlankNodeResourceImpl
           
 class URIReferenceResourceImpl
           
 

Fields in org.jrdf.graph.local.mem with type parameters of type ObjectNode
protected  Map<Long,ObjectNode> AbstractUnorderedContainer.elements
          The hashmap containing the elements.
 

Methods in org.jrdf.graph.local.mem that return types with arguments of type ObjectNode
 ClosableIterator<ObjectNode> AbstractResource.getObjects(PredicateNode predicate)
           
 Iterator<ObjectNode> AbstractUnorderedContainer.iterator()
           
 

Methods in org.jrdf.graph.local.mem with parameters of type ObjectNode
 boolean AlternativeImpl.add(ObjectNode o)
           
 boolean AbstractUnorderedContainer.add(ObjectNode o)
           
 void GraphImpl.add(SubjectNode subject, PredicateNode predicate, ObjectNode object)
           
 void AbstractResource.addValue(PredicateNode predicate, ObjectNode object)
           
 boolean ReadWriteGraphImpl.contains(SubjectNode subject, PredicateNode predicate, ObjectNode object)
           
 boolean ReadableGraphImpl.contains(SubjectNode subject, PredicateNode predicate, ObjectNode object)
           
 boolean ReadableGraph.contains(SubjectNode subject, PredicateNode predicate, ObjectNode object)
           
 boolean GraphImpl.contains(SubjectNode subject, PredicateNode predicate, ObjectNode object)
           
 ClosableIterator<Triple> ReadWriteGraphImpl.find(SubjectNode subject, PredicateNode predicate, ObjectNode object)
           
 ClosableIterator<Triple> ReadableGraphImpl.find(SubjectNode subject, PredicateNode predicate, ObjectNode object)
           
 ClosableIterator<Triple> ReadableGraph.find(SubjectNode subject, PredicateNode predicate, ObjectNode object)
           
 ClosableIterator<Triple> GraphImpl.find(SubjectNode subject, PredicateNode predicate, ObjectNode object)
           
 void WritableGraphImpl.localizeAndAdd(SubjectNode subject, PredicateNode predicate, ObjectNode object)
           
 void WritableGraph.localizeAndAdd(SubjectNode subject, PredicateNode predicate, ObjectNode object)
           
 void ReadWriteGraphImpl.localizeAndAdd(SubjectNode subject, PredicateNode predicate, ObjectNode object)
           
 void WritableGraphImpl.localizeAndRemove(SubjectNode subject, PredicateNode predicate, ObjectNode object)
           
 void WritableGraph.localizeAndRemove(SubjectNode subject, PredicateNode predicate, ObjectNode object)
           
 void ReadWriteGraphImpl.localizeAndRemove(SubjectNode subject, PredicateNode predicate, ObjectNode object)
           
 void GraphImpl.remove(SubjectNode subject, PredicateNode predicate, ObjectNode object)
           
 void AbstractResource.removeValue(PredicateNode predicate, ObjectNode object)
           
 void AbstractResource.setValue(PredicateNode predicate, ObjectNode object)
           
 

Method parameters in org.jrdf.graph.local.mem with type arguments of type ObjectNode
 boolean AbstractUnorderedContainer.addAll(Collection<? extends ObjectNode> c)
           
 

Uses of ObjectNode in org.jrdf.graph.local.mem.iterator
 

Methods in org.jrdf.graph.local.mem.iterator that return ObjectNode
 ObjectNode ObjectNodeIterator.next()
           
 

Uses of ObjectNode in org.jrdf.graph.local.util
 

Methods in org.jrdf.graph.local.util that return ObjectNode
 ObjectNode CopyGraphUtilImpl.copyTriplesForObjectNode(Graph newSourceGraph, Graph newTargetGraph, ObjectNode node, ObjectNode newNode)
           
 ObjectNode CopyGraphUtil.copyTriplesForObjectNode(Graph newSourceGraph, Graph newTargetGraph, ObjectNode node, ObjectNode newNode)
           
 

Methods in org.jrdf.graph.local.util with parameters of type ObjectNode
 ObjectNode CopyGraphUtilImpl.copyTriplesForObjectNode(Graph newSourceGraph, Graph newTargetGraph, ObjectNode node, ObjectNode newNode)
           
 ObjectNode CopyGraphUtil.copyTriplesForObjectNode(Graph newSourceGraph, Graph newTargetGraph, ObjectNode node, ObjectNode newNode)
           
 

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.
 void GraphStatementHandler.handleStatement(SubjectNode subject, PredicateNode predicate, ObjectNode object)
           
 

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

Methods in org.jrdf.parser.ntriples.parser that return ObjectNode
 ObjectNode ObjectParserImpl.parseObject(RegexMatcher matcher)
           
 ObjectNode ObjectParser.parseObject(RegexMatcher matcher)
           
 

Uses of ObjectNode in org.jrdf.writer.rdfxml
 

Methods in org.jrdf.writer.rdfxml with parameters of type ObjectNode
 void PredicateObjectWriterImpl.writePredicateObject(PredicateNode predicate, ObjectNode object)
           
 void PredicateObjectWriter.writePredicateObject(PredicateNode predicate, ObjectNode object)