Uses of Interface
org.jrdf.util.ClosableIterator

Packages that use ClosableIterator
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.query   
 

Uses of ClosableIterator in org.jrdf.graph
 

Methods in org.jrdf.graph that return ClosableIterator
 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.
 

Uses of ClosableIterator in org.jrdf.graph.mem
 

Classes in org.jrdf.graph.mem that implement ClosableIterator
 class EmptyClosableIterator
          An iterator that returns no triples.
 class GraphIterator
          An iterator that iterates over an entire graph.
 class OneFixedIterator
          An iterator that iterates over a group with a single fixed node.
 class ThreeFixedIterator
          An iterator that returns only a single triple, if any exists.
 class TwoFixedIterator
          An iterator that iterates over a group with a two fixed nodes.
 

Methods in org.jrdf.graph.mem that return ClosableIterator
 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.
 

Uses of ClosableIterator in org.jrdf.query
 

Methods in org.jrdf.query that return ClosableIterator
 ClosableIterator Answer.getClosableIterator()
           
 ClosableIterator DefaultAnswer.getClosableIterator()
           
 

Constructors in org.jrdf.query with parameters of type ClosableIterator
DefaultAnswer(ClosableIterator closableIterator)