org.jrdf.graph.local.iterator
Class TripleClosableIterator
java.lang.Object
org.jrdf.graph.local.iterator.TripleClosableIterator
- All Implemented Interfaces:
- Iterator<Triple>, ClosableMemIterator<Triple>, ClosableIterator<Triple>
public class TripleClosableIterator
- extends Object
- implements ClosableMemIterator<Triple>
A simple iterator that provides removal of nodes from the underlying store - irrespectively of the order given
by the iterator.
- Version:
- $Revision: 1804 $
- Author:
- Andrew Newman
Method Summary |
boolean |
close()
Closes the iterator by freeing any resources that it current holds. |
boolean |
hasNext()
|
Triple |
next()
|
void |
remove()
|
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
TripleClosableIterator
public TripleClosableIterator(Iterator<Triple> newIter,
Localizer newLocalizer,
LongIndex newLongIndex,
GraphHandler newHandler)
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<Triple>
- Returns:
- true if it was successfully closed.
hasNext
public boolean hasNext()
- Specified by:
hasNext
in interface Iterator<Triple>
next
public Triple next()
- Specified by:
next
in interface Iterator<Triple>
remove
public void remove()
- Specified by:
remove
in interface Iterator<Triple>