org.jrdf.graph.mem.iterator
Class TripleClosableIterator
java.lang.Object
org.jrdf.graph.mem.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: 1045 $
- Author:
- Andrew Newman
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
TripleClosableIterator
public TripleClosableIterator(Iterator<Triple> iter,
NodePoolMem nodePool,
LongIndex longIndex,
GraphHandler handler)
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>
containsHandler
public boolean containsHandler(GraphHandler012 handler012,
GraphHandler201 handler201,
GraphHandler120 handler120)
- Description copied from interface:
ClosableMemIterator
- Return true if this iterator contains any of the handlers.
- Specified by:
containsHandler
in interface ClosableMemIterator<Triple>
- Parameters:
handler012
- the 012 handlerhandler201
- the 201 handlerhandler120
- the 120 handler
- Returns:
- true if this iterator contains any of the given handlers.