org.jrdf.graph.local.iterator
Class SubjectNodeIterator
java.lang.Object
org.jrdf.graph.local.iterator.SubjectNodeIterator
- All Implemented Interfaces:
- Iterator<SubjectNode>, ClosableIterator<SubjectNode>
public class SubjectNodeIterator
- extends Object
- implements ClosableIterator<SubjectNode>
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
SubjectNodeIterator
public SubjectNodeIterator(ClosableIterator<Triple> itr)
close
public boolean close()
- Description copied from interface:
ClosableIterator
- Closes the iterator by freeing any resources that it current holds.
This must be done as soon as possible. Once an iterator is closed none of the
operations on a iterator will operate i.e. they will throw an exception.
- Specified by:
close in interface ClosableIterator<SubjectNode>
- Returns:
- true if it was successfully closed.
hasNext
public boolean hasNext()
- Specified by:
hasNext in interface Iterator<SubjectNode>
next
public SubjectNode next()
- Specified by:
next in interface Iterator<SubjectNode>
remove
public void remove()
- Specified by:
remove in interface Iterator<SubjectNode>