org.apache.beehive.controls.system.jdbc
Class ResultSetIterator

Object
  extended by ResultSetIterator
All Implemented Interfaces:
Iterator

public class ResultSetIterator
extends Object
implements Iterator

Used by DefaultIteratorResultSetMapper for mapping a ResultSet to an Iterator type.


Method Summary
 boolean hasNext()
          Does this iterater have more elements?
 Object next()
          Get the next element in the iteration.
 void remove()
          Remove is currently not supported.
 
Methods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

hasNext

public boolean hasNext()
Does this iterater have more elements?

Specified by:
hasNext in interface Iterator
Returns:
true if there is another element

next

public Object next()
Get the next element in the iteration.

Specified by:
next in interface Iterator
Returns:
The next element in the iteration.

remove

public void remove()
Remove is currently not supported.

Specified by:
remove in interface Iterator