Uses of Class
org.jrdf.graph.GraphException

Packages that use GraphException
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.rdfxml   
 

Uses of GraphException in org.jrdf.graph
 

Methods in org.jrdf.graph that throw GraphException
 boolean Graph.contains(SubjectNode subject, PredicateNode predicate, ObjectNode object)
          Test the graph for the occurrence of a statement.
 boolean Graph.contains(Triple triple)
          Test the graph for the occurrence of the triple.
 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.
 ClosableIterator Graph.find(Triple triple)
          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.add(Triple triple)
          Adds a triple to the graph.
 void Graph.add(Iterator triples)
          Adds all the triples contained in an iterator into the graph.
 void Graph.remove(SubjectNode subject, PredicateNode predicate, ObjectNode object)
          Removes a triple from the graph.
 void Graph.remove(Triple triple)
          Removes a triple from the graph.
 void Graph.remove(Iterator triples)
          Removes all the triples contained in an iterator from the graph.
 long Graph.getNumberOfTriples()
          Returns the number of triples in the graph.
 boolean Graph.isEmpty()
          Returns true if the graph is empty i.e. the number of triples is 0.
 

Uses of GraphException in org.jrdf.graph.mem
 

Methods in org.jrdf.graph.mem that throw GraphException
 void GraphHandler.remove(Long[] currentNodes)
           
 void GraphHandler012.remove(Long[] currentNodes)
           
 void GraphHandler120.remove(Long[] currentNodes)
           
 void GraphHandler201.remove(Long[] currentNodes)
           
 boolean GraphImpl.contains(SubjectNode subject, PredicateNode predicate, ObjectNode object)
          Test the graph for the occurrence of a statement.
 boolean GraphImpl.contains(Triple triple)
          Test the graph for the occurrence of the triple.
 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.
 ClosableIterator GraphImpl.find(Triple triple)
          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.add(Triple triple)
          Adds a triple to the graph.
 void GraphImpl.add(Iterator triples)
          Adds an iterator containing triples into the graph.
 void GraphImpl.remove(SubjectNode subject, PredicateNode predicate, ObjectNode object)
          Removes a triple from the graph.
 void GraphImpl.remove(Triple triple)
          Removes a triple from the graph.
 void GraphImpl.remove(Iterator triples)
          Removes an iterator containing triples from the graph.
 long GraphImpl.getNumberOfTriples()
          Returns the number of triples in the graph.
 boolean GraphImpl.isEmpty()
          Returns true if the graph is empty i.e. the number of triples is 0.
 

Constructors in org.jrdf.graph.mem that throw GraphException
GraphImpl()
          Default constructor.
 

Uses of GraphException in org.jrdf.parser.rdfxml
 

Constructors in org.jrdf.parser.rdfxml that throw GraphException
RdfXmlParser(GraphElementFactory graphElementFactory)
          Creates a new RdfXmlParser that will use the supplied GraphElementFactory to create objects for resources, bNodes and literals.
RdfXmlParser(GraphElementFactory valueFactory, ParserBlankNodeFactory parserBlankNodeFactory)
          Creates a new RdfXmlParser that will use the supplied GraphElementFactory to create objects for resources, bNodes and literals.