Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

javatools.db
Interface DbIterator  view DbIterator download DbIterator.java

All Superinterfaces:
java.util.Iterator
All Known Implementing Classes:
DbRowSetIterator, DbTableIterator

public interface DbIterator
extends java.util.Iterator

An iterator interface for DbTables.

Version:
0.2.0

Method Summary
 boolean hasNextRow()
          Are there more rows to iterator through?
 DbRow nextRow()
          Get the next DbRow in the table.
 void remove()
          Removes the current element.
 
Methods inherited from interface java.util.Iterator
hasNext, next
 

Method Detail

remove

public void remove()
Removes the current element.

Specified by:
remove in interface java.util.Iterator

hasNextRow

public boolean hasNextRow()
                   throws DbException
Are there more rows to iterator through?


nextRow

public DbRow nextRow()
              throws DbException
Get the next DbRow in the table.